diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..35330d2 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,32 @@ +name: build + +on: [ push, pull_request ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup .NET 8 SDK + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.x + - name: restore + run: dotnet restore + - name: build + run: dotnet build --no-restore + # release to NuGet if push of tag + release: + runs-on: ubuntu-latest + needs: build + if: startsWith(github.ref, 'refs/tags/') + steps: + - uses: actions/checkout@v3 + - name: Setup .NET 8 SDK + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.x + - name: pack + run: dotnet pack --configuration Release -o ./bin/nupkg + - name: push + run: dotnet nuget push ./bin/nupkg/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml new file mode 100644 index 0000000..7ecef2e --- /dev/null +++ b/.github/workflows/docs.yaml @@ -0,0 +1,42 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - master + paths: + - '.github/workflows/docs.yml' + - 'docs/**' + pull_request: + +jobs: + deploy: + name: Deploy to GitHub Pages + runs-on: ubuntu-latest + permissions: + contents: write + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: yarn + cache-dependency-path: 'docs/yarn.lock' + + - name: Install dependencies + run: yarn install --frozen-lockfile + working-directory: ./docs + - name: Build website + run: yarn build + working-directory: ./docs + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + if: github.ref == 'refs/heads/master' + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs/build \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0422d5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +.idea/ +.vscode/ +/config.yaml +/nupkg +/.config/dotnet-tools.json + +/examples/*/.docusaurus +/examples/*/node_modules +/examples/*/docs/api +/examples/*/api +.vercel diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e2a17a9 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "examples/discord-net-dfmg/Discord.Net"] + path = examples/discord-net-dfmg/Discord.Net + url = https://github.com/discord-net/Discord.Net +[submodule "examples/docfx"] + path = examples/docfx + url = https://github.com/dotnet/docfx.git diff --git a/DocFxToTemplate.sln b/DocFxToTemplate.sln new file mode 100644 index 0000000..3aa8bf2 --- /dev/null +++ b/DocFxToTemplate.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocFxToTemplate", "src\DocFxToTemplate\DocFxToTemplate.csproj", "{7E4D53D2-3A2B-4DD4-9E7B-FB5C2A18C312}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocFxToTemplate.Tool", "src\DocFxToTemplate.Tool\DocFxToTemplate.Tool.csproj", "{AC9E96F2-F0DB-421F-8CE4-291EEE985498}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocFxToTemplate.Example1", "src\example\DocFxToTemplate.Example1\DocFxToTemplate.Example1.csproj", "{6058369A-DF5B-461B-8D60-32D485BD93B0}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocFxToTemplate.Example2", "src\example\DocFxToTemplate.Example2\DocFxToTemplate.Example2.csproj", "{52D921A9-DD54-4C35-9774-F857DD3D54F6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7E4D53D2-3A2B-4DD4-9E7B-FB5C2A18C312}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7E4D53D2-3A2B-4DD4-9E7B-FB5C2A18C312}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7E4D53D2-3A2B-4DD4-9E7B-FB5C2A18C312}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7E4D53D2-3A2B-4DD4-9E7B-FB5C2A18C312}.Release|Any CPU.Build.0 = Release|Any CPU + {AC9E96F2-F0DB-421F-8CE4-291EEE985498}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AC9E96F2-F0DB-421F-8CE4-291EEE985498}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AC9E96F2-F0DB-421F-8CE4-291EEE985498}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AC9E96F2-F0DB-421F-8CE4-291EEE985498}.Release|Any CPU.Build.0 = Release|Any CPU + {6058369A-DF5B-461B-8D60-32D485BD93B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6058369A-DF5B-461B-8D60-32D485BD93B0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6058369A-DF5B-461B-8D60-32D485BD93B0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6058369A-DF5B-461B-8D60-32D485BD93B0}.Release|Any CPU.Build.0 = Release|Any CPU + {52D921A9-DD54-4C35-9774-F857DD3D54F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {52D921A9-DD54-4C35-9774-F857DD3D54F6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {52D921A9-DD54-4C35-9774-F857DD3D54F6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {52D921A9-DD54-4C35-9774-F857DD3D54F6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2526225 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Karol Wójcik + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..ec202f6 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# DocFxToTemplate + +DocFx YAML metadata to (scriban) template converter. + +Docs: https://k-wojcik.github.io/DocFxToTemplate +Example: https://k-wojcik.github.io/DocFxToTemplate/docs/api \ No newline at end of file diff --git a/api/.manifest b/api/.manifest new file mode 100644 index 0000000..c784ffb --- /dev/null +++ b/api/.manifest @@ -0,0 +1,334 @@ +{ + "DocFxToTemplate": "DocFxToTemplate.yml", + "DocFxToTemplate.Example1": "DocFxToTemplate.Example1.yml", + "DocFxToTemplate.Example1.Class1": "DocFxToTemplate.Example1.Class1.yml", + "DocFxToTemplate.Example1.Enum1": "DocFxToTemplate.Example1.Enum1.yml", + "DocFxToTemplate.Example1.Flags1": "DocFxToTemplate.Example1.Flags1.yml", + "DocFxToTemplate.Example1.Flags1.Flag1": "DocFxToTemplate.Example1.Flags1.yml", + "DocFxToTemplate.Example1.Flags1.Flag2": "DocFxToTemplate.Example1.Flags1.yml", + "DocFxToTemplate.Example1.Interface1": "DocFxToTemplate.Example1.Interface1.yml", + "DocFxToTemplate.Example1.Record1": "DocFxToTemplate.Example1.Record1.yml", + "DocFxToTemplate.Example1.Struct1": "DocFxToTemplate.Example1.Struct1.yml", + "DocFxToTemplate.Generator": "DocFxToTemplate.Generator.yml", + "DocFxToTemplate.Generator.#ctor(Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator},DocFxToTemplate.GeneratorOptions)": "DocFxToTemplate.Generator.yml", + "DocFxToTemplate.Generator.Generate": "DocFxToTemplate.Generator.yml", + "DocFxToTemplate.GeneratorOptions": "DocFxToTemplate.GeneratorOptions.yml", + "DocFxToTemplate.GeneratorOptions.IndexSlug": "DocFxToTemplate.GeneratorOptions.yml", + "DocFxToTemplate.GeneratorOptions.OutputPath": "DocFxToTemplate.GeneratorOptions.yml", + "DocFxToTemplate.GeneratorOptions.YamlPath": "DocFxToTemplate.GeneratorOptions.yml", + "DocFxToTemplate.Models.DocFx": "DocFxToTemplate.Models.DocFx.yml", + "DocFxToTemplate.Models.DocFx.AdditionalNotes": "DocFxToTemplate.Models.DocFx.AdditionalNotes.yml", + "DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller": "DocFxToTemplate.Models.DocFx.AdditionalNotes.yml", + "DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer": "DocFxToTemplate.Models.DocFx.AdditionalNotes.yml", + "DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor": "DocFxToTemplate.Models.DocFx.AdditionalNotes.yml", + "DocFxToTemplate.Models.DocFx.ApiParameter": "DocFxToTemplate.Models.DocFx.ApiParameter.yml", + "DocFxToTemplate.Models.DocFx.ApiParameter.Attributes": "DocFxToTemplate.Models.DocFx.ApiParameter.yml", + "DocFxToTemplate.Models.DocFx.ApiParameter.Description": "DocFxToTemplate.Models.DocFx.ApiParameter.yml", + "DocFxToTemplate.Models.DocFx.ApiParameter.Name": "DocFxToTemplate.Models.DocFx.ApiParameter.yml", + "DocFxToTemplate.Models.DocFx.ApiParameter.Reference": "DocFxToTemplate.Models.DocFx.ApiParameter.yml", + "DocFxToTemplate.Models.DocFx.ApiParameter.Type": "DocFxToTemplate.Models.DocFx.ApiParameter.yml", + "DocFxToTemplate.Models.DocFx.ArgumentInfo": "DocFxToTemplate.Models.DocFx.ArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.ArgumentInfo.Type": "DocFxToTemplate.Models.DocFx.ArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.ArgumentInfo.Value": "DocFxToTemplate.Models.DocFx.ArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.AttributeInfo": "DocFxToTemplate.Models.DocFx.AttributeInfo.yml", + "DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments": "DocFxToTemplate.Models.DocFx.AttributeInfo.yml", + "DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor": "DocFxToTemplate.Models.DocFx.AttributeInfo.yml", + "DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments": "DocFxToTemplate.Models.DocFx.AttributeInfo.yml", + "DocFxToTemplate.Models.DocFx.AttributeInfo.Type": "DocFxToTemplate.Models.DocFx.AttributeInfo.yml", + "DocFxToTemplate.Models.DocFx.Attributes": "DocFxToTemplate.Models.DocFx.Attributes.yml", + "DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute": "DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.yml", + "DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor": "DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.yml", + "DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String)": "DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute": "DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MergeOption": "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Ignore": "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.MergeKey": "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Replace": "DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute": "DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.yml", + "DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption)": "DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.yml", + "DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute": "DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Add(System.String,System.Object)": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder": "DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add``1(System.String,System.Collections.Generic.IDictionary{System.String,``0},System.Func{System.Object,``0})": "DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create": "DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey(System.String)": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Count": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Item(System.String)": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove(System.String)": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue(System.String,System.Object@)": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.CompositeDictionary.Values": "DocFxToTemplate.Models.DocFx.CompositeDictionary.yml", + "DocFxToTemplate.Models.DocFx.Constants": "DocFxToTemplate.Models.DocFx.Constants.yml", + "DocFxToTemplate.Models.DocFx.Constants.ConfigFileName": "DocFxToTemplate.Models.DocFx.Constants.yml", + "DocFxToTemplate.Models.DocFx.Constants.ContentPlaceholder": "DocFxToTemplate.Models.DocFx.Constants.yml", + "DocFxToTemplate.Models.DocFx.Constants.DevLang": "DocFxToTemplate.Models.DocFx.Constants.DevLang.yml", + "DocFxToTemplate.Models.DocFx.Constants.DevLang.CSharp": "DocFxToTemplate.Models.DocFx.Constants.DevLang.yml", + "DocFxToTemplate.Models.DocFx.Constants.DevLang.VB": "DocFxToTemplate.Models.DocFx.Constants.DevLang.yml", + "DocFxToTemplate.Models.DocFx.Constants.DocumentType": "DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml", + "DocFxToTemplate.Models.DocFx.Constants.DocumentType.Conceptual": "DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml", + "DocFxToTemplate.Models.DocFx.Constants.DocumentType.ManagedReference": "DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml", + "DocFxToTemplate.Models.DocFx.Constants.DocumentType.Redirection": "DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml", + "DocFxToTemplate.Models.DocFx.Constants.DocumentType.Resource": "DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml", + "DocFxToTemplate.Models.DocFx.Constants.DocumentType.Toc": "DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_KEEP_DEBUG_INFO": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_SOURCE_BRANCH_NAME": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName": "DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Assemblies": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Children": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Content": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.DerivedClasses": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Exceptions": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.ExtensionMethods": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.FullName": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Implements": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Inheritance": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.InheritedMembers": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Name": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Namespace": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.NameWithType": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overload": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overridden": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Parent": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Platform": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Return": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Source": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Spec": "DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml", + "DocFxToTemplate.Models.DocFx.Constants.MetadataName": "DocFxToTemplate.Models.DocFx.Constants.MetadataName.yml", + "DocFxToTemplate.Models.DocFx.Constants.MetadataName.Version": "DocFxToTemplate.Models.DocFx.Constants.MetadataName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PrefixSeparator": "DocFxToTemplate.Models.DocFx.Constants.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.AdditionalNotes": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Assemblies": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Children": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.CommentId": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Conceptual": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Content": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.DerivedClasses": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.DisplayName": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Documentation": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.DocumentType": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Exceptions": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.ExtensionMethods": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.FullName": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Href": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Id": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Implements": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Inheritance": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.InheritedMembers": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.IsEii": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Name": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Namespace": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.NameWithType": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.OutputFileName": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overload": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overridden": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Parent": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Path": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Platform": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.RedirectUrl": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Return": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.SeeAlsoContent": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Source": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Summary": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Syntax": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.SystemKeys": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Title": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.TitleOverwriteH1": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.TocHref": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicHref": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicUid": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Type": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.PropertyName.Uid": "DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml", + "DocFxToTemplate.Models.DocFx.Constants.Switches": "DocFxToTemplate.Models.DocFx.Constants.Switches.yml", + "DocFxToTemplate.Models.DocFx.Constants.Switches.DotnetToolMode": "DocFxToTemplate.Models.DocFx.Constants.Switches.yml", + "DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode": "DocFxToTemplate.Models.DocFx.Constants.Switches.yml", + "DocFxToTemplate.Models.DocFx.Constants.TableOfContents": "DocFxToTemplate.Models.DocFx.Constants.TableOfContents.yml", + "DocFxToTemplate.Models.DocFx.Constants.TableOfContents.MarkdownTocFileName": "DocFxToTemplate.Models.DocFx.Constants.TableOfContents.yml", + "DocFxToTemplate.Models.DocFx.Constants.TableOfContents.YamlTocFileName": "DocFxToTemplate.Models.DocFx.Constants.TableOfContents.yml", + "DocFxToTemplate.Models.DocFx.Constants.TocYamlFileName": "DocFxToTemplate.Models.DocFx.Constants.yml", + "DocFxToTemplate.Models.DocFx.Constants.YamlExtension": "DocFxToTemplate.Models.DocFx.Constants.yml", + "DocFxToTemplate.Models.DocFx.ExceptionInfo": "DocFxToTemplate.Models.DocFx.ExceptionInfo.yml", + "DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId": "DocFxToTemplate.Models.DocFx.ExceptionInfo.yml", + "DocFxToTemplate.Models.DocFx.ExceptionInfo.Description": "DocFxToTemplate.Models.DocFx.ExceptionInfo.yml", + "DocFxToTemplate.Models.DocFx.ExceptionInfo.Type": "DocFxToTemplate.Models.DocFx.ExceptionInfo.yml", + "DocFxToTemplate.Models.DocFx.GitDetail": "DocFxToTemplate.Models.DocFx.GitDetail.yml", + "DocFxToTemplate.Models.DocFx.GitDetail.Branch": "DocFxToTemplate.Models.DocFx.GitDetail.yml", + "DocFxToTemplate.Models.DocFx.GitDetail.Path": "DocFxToTemplate.Models.DocFx.GitDetail.yml", + "DocFxToTemplate.Models.DocFx.GitDetail.Repo": "DocFxToTemplate.Models.DocFx.GitDetail.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Children": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Events": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Examples": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Fields": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.FullName": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Href": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Id": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Implements": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Link": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Methods": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Name": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Names": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Overload": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Parent": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Platform": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Properties": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Source": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Summary": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Type": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.ItemViewModel.Uid": "DocFxToTemplate.Models.DocFx.ItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.LinkInfo": "DocFxToTemplate.Models.DocFx.LinkInfo.yml", + "DocFxToTemplate.Models.DocFx.LinkInfo.AltText": "DocFxToTemplate.Models.DocFx.LinkInfo.yml", + "DocFxToTemplate.Models.DocFx.LinkInfo.CommentId": "DocFxToTemplate.Models.DocFx.LinkInfo.yml", + "DocFxToTemplate.Models.DocFx.LinkInfo.LinkId": "DocFxToTemplate.Models.DocFx.LinkInfo.yml", + "DocFxToTemplate.Models.DocFx.LinkInfo.LinkType": "DocFxToTemplate.Models.DocFx.LinkInfo.yml", + "DocFxToTemplate.Models.DocFx.LinkType": "DocFxToTemplate.Models.DocFx.LinkType.yml", + "DocFxToTemplate.Models.DocFx.LinkType.CRef": "DocFxToTemplate.Models.DocFx.LinkType.yml", + "DocFxToTemplate.Models.DocFx.LinkType.HRef": "DocFxToTemplate.Models.DocFx.LinkType.yml", + "DocFxToTemplate.Models.DocFx.MarkdownLink": "DocFxToTemplate.Models.DocFx.MarkdownLink.yml", + "DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor(System.String,System.String)": "DocFxToTemplate.Models.DocFx.MarkdownLink.yml", + "DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress": "DocFxToTemplate.Models.DocFx.MarkdownLink.yml", + "DocFxToTemplate.Models.DocFx.MarkdownLink.Name": "DocFxToTemplate.Models.DocFx.MarkdownLink.yml", + "DocFxToTemplate.Models.DocFx.MemberType": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Assembly": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.AttachedEvent": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.AttachedProperty": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Class": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Constructor": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Container": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Default": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Delegate": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Enum": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Event": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Field": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Interface": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Method": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Namespace": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Operator": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Property": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Struct": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.MemberType.Toc": "DocFxToTemplate.Models.DocFx.MemberType.yml", + "DocFxToTemplate.Models.DocFx.NamedArgumentInfo": "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name": "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type": "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value": "DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml", + "DocFxToTemplate.Models.DocFx.PageViewModel": "DocFxToTemplate.Models.DocFx.PageViewModel.yml", + "DocFxToTemplate.Models.DocFx.PageViewModel.Items": "DocFxToTemplate.Models.DocFx.PageViewModel.yml", + "DocFxToTemplate.Models.DocFx.PageViewModel.Metadata": "DocFxToTemplate.Models.DocFx.PageViewModel.yml", + "DocFxToTemplate.Models.DocFx.PageViewModel.References": "DocFxToTemplate.Models.DocFx.PageViewModel.yml", + "DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup": "DocFxToTemplate.Models.DocFx.PageViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid": "DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail.EndLine": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail.Href": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail.Name": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail.Path": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail.Remote": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SourceDetail.StartLine": "DocFxToTemplate.Models.DocFx.SourceDetail.yml", + "DocFxToTemplate.Models.DocFx.SpecViewModel": "DocFxToTemplate.Models.DocFx.SpecViewModel.yml", + "DocFxToTemplate.Models.DocFx.SpecViewModel.Href": "DocFxToTemplate.Models.DocFx.SpecViewModel.yml", + "DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal": "DocFxToTemplate.Models.DocFx.SpecViewModel.yml", + "DocFxToTemplate.Models.DocFx.SpecViewModel.Item": "DocFxToTemplate.Models.DocFx.SpecViewModel.yml", + "DocFxToTemplate.Models.DocFx.SpecViewModel.Name": "DocFxToTemplate.Models.DocFx.SpecViewModel.yml", + "DocFxToTemplate.Models.DocFx.SpecViewModel.Uid": "DocFxToTemplate.Models.DocFx.SpecViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters": "DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml", + "DocFxToTemplate.Models.DocFx.SyntaxLanguage": "DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml", + "DocFxToTemplate.Models.DocFx.SyntaxLanguage.CSharp": "DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml", + "DocFxToTemplate.Models.DocFx.SyntaxLanguage.Default": "DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml", + "DocFxToTemplate.Models.DocFx.SyntaxLanguage.VB": "DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Href": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Items": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Name": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Order": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid": "DocFxToTemplate.Models.DocFx.TocItemViewModel.yml", + "DocFxToTemplate.Templates": "DocFxToTemplate.Templates.yml", + "DocFxToTemplate.Templates.TemplateLoader": "DocFxToTemplate.Templates.TemplateLoader.yml", + "DocFxToTemplate.Templates.TemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String)": "DocFxToTemplate.Templates.TemplateLoader.yml", + "DocFxToTemplate.Templates.TemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String)": "DocFxToTemplate.Templates.TemplateLoader.yml", + "DocFxToTemplate.Templates.TemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String)": "DocFxToTemplate.Templates.TemplateLoader.yml" +} \ No newline at end of file diff --git a/api/DocFxToTemplate.Example1.Class1.yml b/api/DocFxToTemplate.Example1.Class1.yml new file mode 100644 index 0000000..5591bed --- /dev/null +++ b/api/DocFxToTemplate.Example1.Class1.yml @@ -0,0 +1,294 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1.Class1 + commentId: T:DocFxToTemplate.Example1.Class1 + id: Class1 + parent: DocFxToTemplate.Example1 + children: [] + langs: + - csharp + - vb + name: Class1 + nameWithType: Class1 + fullName: DocFxToTemplate.Example1.Class1 + type: Class + source: + id: Class1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Class1.cs + startLine: 2 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: public class Class1 + content.vb: Public Class Class1 + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/DocFxToTemplate.Example1.Enum1.yml b/api/DocFxToTemplate.Example1.Enum1.yml new file mode 100644 index 0000000..a075fac --- /dev/null +++ b/api/DocFxToTemplate.Example1.Enum1.yml @@ -0,0 +1,47 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1.Enum1 + commentId: T:DocFxToTemplate.Example1.Enum1 + id: Enum1 + parent: DocFxToTemplate.Example1 + children: [] + langs: + - csharp + - vb + name: Enum1 + nameWithType: Enum1 + fullName: DocFxToTemplate.Example1.Enum1 + type: Enum + source: + id: Enum1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Enum1.cs + startLine: 2 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: public enum Enum1 + content.vb: Public Enum Enum1 +references: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html diff --git a/api/DocFxToTemplate.Example1.Flags1.yml b/api/DocFxToTemplate.Example1.Flags1.yml new file mode 100644 index 0000000..b6d430e --- /dev/null +++ b/api/DocFxToTemplate.Example1.Flags1.yml @@ -0,0 +1,110 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1.Flags1 + commentId: T:DocFxToTemplate.Example1.Flags1 + id: Flags1 + parent: DocFxToTemplate.Example1 + children: + - DocFxToTemplate.Example1.Flags1.Flag1 + - DocFxToTemplate.Example1.Flags1.Flag2 + langs: + - csharp + - vb + name: Flags1 + nameWithType: Flags1 + fullName: DocFxToTemplate.Example1.Flags1 + type: Enum + source: + id: Flags1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Flags1.cs + startLine: 2 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: >- + [Flags] + + public enum Flags1 + content.vb: >- + + + Public Enum Flags1 + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Example1.Flags1.Flag1 + commentId: F:DocFxToTemplate.Example1.Flags1.Flag1 + id: Flag1 + parent: DocFxToTemplate.Example1.Flags1 + langs: + - csharp + - vb + name: Flag1 + nameWithType: Flags1.Flag1 + fullName: DocFxToTemplate.Example1.Flags1.Flag1 + type: Field + source: + id: Flag1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Flags1.cs + startLine: 5 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: Flag1 = 0 + return: + type: DocFxToTemplate.Example1.Flags1 +- uid: DocFxToTemplate.Example1.Flags1.Flag2 + commentId: F:DocFxToTemplate.Example1.Flags1.Flag2 + id: Flag2 + parent: DocFxToTemplate.Example1.Flags1 + langs: + - csharp + - vb + name: Flag2 + nameWithType: Flags1.Flag2 + fullName: DocFxToTemplate.Example1.Flags1.Flag2 + type: Field + source: + id: Flag2 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Flags1.cs + startLine: 6 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: Flag2 = 1 + return: + type: DocFxToTemplate.Example1.Flags1 +references: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html +- uid: DocFxToTemplate.Example1.Flags1 + commentId: T:DocFxToTemplate.Example1.Flags1 + parent: DocFxToTemplate.Example1 + href: DocFxToTemplate.Example1.Flags1.html + name: Flags1 + nameWithType: Flags1 + fullName: DocFxToTemplate.Example1.Flags1 diff --git a/api/DocFxToTemplate.Example1.Interface1.yml b/api/DocFxToTemplate.Example1.Interface1.yml new file mode 100644 index 0000000..fa9e793 --- /dev/null +++ b/api/DocFxToTemplate.Example1.Interface1.yml @@ -0,0 +1,47 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1.Interface1 + commentId: T:DocFxToTemplate.Example1.Interface1 + id: Interface1 + parent: DocFxToTemplate.Example1 + children: [] + langs: + - csharp + - vb + name: Interface1 + nameWithType: Interface1 + fullName: DocFxToTemplate.Example1.Interface1 + type: Interface + source: + id: Interface1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Interface1.cs + startLine: 2 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: public interface Interface1 + content.vb: Public Interface Interface1 +references: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html diff --git a/api/DocFxToTemplate.Example1.Record1.yml b/api/DocFxToTemplate.Example1.Record1.yml new file mode 100644 index 0000000..cb0dc08 --- /dev/null +++ b/api/DocFxToTemplate.Example1.Record1.yml @@ -0,0 +1,357 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1.Record1 + commentId: T:DocFxToTemplate.Example1.Record1 + id: Record1 + parent: DocFxToTemplate.Example1 + children: [] + langs: + - csharp + - vb + name: Record1 + nameWithType: Record1 + fullName: DocFxToTemplate.Example1.Record1 + type: Class + source: + id: Record1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Record1.cs + startLine: 2 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: 'public record Record1 : IEquatable' + content.vb: Public Class Record1 Implements IEquatable(Of Record1) + inheritance: + - System.Object + implements: + - System.IEquatable{DocFxToTemplate.Example1.Record1} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.IEquatable{DocFxToTemplate.Example1.Record1} + commentId: T:System.IEquatable{DocFxToTemplate.Example1.Record1} + parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of Record1) + fullName.vb: System.IEquatable(Of DocFxToTemplate.Example1.Record1) + name.vb: IEquatable(Of Record1) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: DocFxToTemplate.Example1.Record1 + name: Record1 + href: DocFxToTemplate.Example1.Record1.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Example1.Record1 + name: Record1 + href: DocFxToTemplate.Example1.Record1.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) diff --git a/api/DocFxToTemplate.Example1.Struct1.yml b/api/DocFxToTemplate.Example1.Struct1.yml new file mode 100644 index 0000000..fcf06b5 --- /dev/null +++ b/api/DocFxToTemplate.Example1.Struct1.yml @@ -0,0 +1,271 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1.Struct1 + commentId: T:DocFxToTemplate.Example1.Struct1 + id: Struct1 + parent: DocFxToTemplate.Example1 + children: [] + langs: + - csharp + - vb + name: Struct1 + nameWithType: Struct1 + fullName: DocFxToTemplate.Example1.Struct1 + type: Struct + source: + id: Struct1 + path: T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Struct1.cs + startLine: 2 + assemblies: + - DocFxToTemplate.Example1 + namespace: DocFxToTemplate.Example1 + syntax: + content: public struct Struct1 + content.vb: Public Structure Struct1 + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +references: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/DocFxToTemplate.Example1.yml b/api/DocFxToTemplate.Example1.yml new file mode 100644 index 0000000..8259115 --- /dev/null +++ b/api/DocFxToTemplate.Example1.yml @@ -0,0 +1,81 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + id: DocFxToTemplate.Example1 + children: + - DocFxToTemplate.Example1.Class1 + - DocFxToTemplate.Example1.Enum1 + - DocFxToTemplate.Example1.Flags1 + - DocFxToTemplate.Example1.Interface1 + - DocFxToTemplate.Example1.Record1 + - DocFxToTemplate.Example1.Struct1 + langs: + - csharp + - vb + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + type: Namespace + assemblies: + - DocFxToTemplate.Example1 +references: +- uid: DocFxToTemplate.Example1.Class1 + commentId: T:DocFxToTemplate.Example1.Class1 + href: DocFxToTemplate.Example1.Class1.html + name: Class1 + nameWithType: Class1 + fullName: DocFxToTemplate.Example1.Class1 +- uid: DocFxToTemplate.Example1.Enum1 + commentId: T:DocFxToTemplate.Example1.Enum1 + href: DocFxToTemplate.Example1.Enum1.html + name: Enum1 + nameWithType: Enum1 + fullName: DocFxToTemplate.Example1.Enum1 +- uid: DocFxToTemplate.Example1.Flags1 + commentId: T:DocFxToTemplate.Example1.Flags1 + parent: DocFxToTemplate.Example1 + href: DocFxToTemplate.Example1.Flags1.html + name: Flags1 + nameWithType: Flags1 + fullName: DocFxToTemplate.Example1.Flags1 +- uid: DocFxToTemplate.Example1.Interface1 + commentId: T:DocFxToTemplate.Example1.Interface1 + href: DocFxToTemplate.Example1.Interface1.html + name: Interface1 + nameWithType: Interface1 + fullName: DocFxToTemplate.Example1.Interface1 +- uid: DocFxToTemplate.Example1.Record1 + commentId: T:DocFxToTemplate.Example1.Record1 + href: DocFxToTemplate.Example1.Record1.html + name: Record1 + nameWithType: Record1 + fullName: DocFxToTemplate.Example1.Record1 +- uid: DocFxToTemplate.Example1.Struct1 + commentId: T:DocFxToTemplate.Example1.Struct1 + href: DocFxToTemplate.Example1.Struct1.html + name: Struct1 + nameWithType: Struct1 + fullName: DocFxToTemplate.Example1.Struct1 +- uid: DocFxToTemplate.Example1 + commentId: N:DocFxToTemplate.Example1 + href: DocFxToTemplate.html + name: DocFxToTemplate.Example1 + nameWithType: DocFxToTemplate.Example1 + fullName: DocFxToTemplate.Example1 + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Example1 + name: Example1 + href: DocFxToTemplate.Example1.html diff --git a/api/DocFxToTemplate.Generator.yml b/api/DocFxToTemplate.Generator.yml new file mode 100644 index 0000000..c70009e --- /dev/null +++ b/api/DocFxToTemplate.Generator.yml @@ -0,0 +1,474 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Generator + commentId: T:DocFxToTemplate.Generator + id: Generator + parent: DocFxToTemplate + children: + - DocFxToTemplate.Generator.#ctor(Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator},DocFxToTemplate.GeneratorOptions) + - DocFxToTemplate.Generator.Generate + langs: + - csharp + - vb + name: Generator + nameWithType: Generator + fullName: DocFxToTemplate.Generator + type: Class + source: + id: Generator + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Generator.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public sealed class Generator + content.vb: Public NotInheritable Class Generator + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Generator.#ctor(Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator},DocFxToTemplate.GeneratorOptions) + commentId: M:DocFxToTemplate.Generator.#ctor(Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator},DocFxToTemplate.GeneratorOptions) + id: '#ctor(Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator},DocFxToTemplate.GeneratorOptions)' + parent: DocFxToTemplate.Generator + langs: + - csharp + - vb + name: Generator(ILogger, GeneratorOptions) + nameWithType: Generator.Generator(ILogger, GeneratorOptions) + fullName: DocFxToTemplate.Generator.Generator(Microsoft.Extensions.Logging.ILogger, DocFxToTemplate.GeneratorOptions) + type: Constructor + source: + id: .ctor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Generator.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public Generator(ILogger logger, GeneratorOptions options) + parameters: + - id: logger + type: Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator} + - id: options + type: DocFxToTemplate.GeneratorOptions + content.vb: Public Sub New(logger As ILogger(Of Generator), options As GeneratorOptions) + overload: DocFxToTemplate.Generator.#ctor* + nameWithType.vb: Generator.New(ILogger(Of Generator), GeneratorOptions) + fullName.vb: DocFxToTemplate.Generator.New(Microsoft.Extensions.Logging.ILogger(Of DocFxToTemplate.Generator), DocFxToTemplate.GeneratorOptions) + name.vb: New(ILogger(Of Generator), GeneratorOptions) +- uid: DocFxToTemplate.Generator.Generate + commentId: M:DocFxToTemplate.Generator.Generate + id: Generate + parent: DocFxToTemplate.Generator + langs: + - csharp + - vb + name: Generate() + nameWithType: Generator.Generate() + fullName: DocFxToTemplate.Generator.Generate() + type: Method + source: + id: Generate + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Generator.cs + startLine: 26 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public Task Generate() + return: + type: System.Threading.Tasks.Task + content.vb: Public Function Generate() As Task + overload: DocFxToTemplate.Generator.Generate* +references: +- uid: DocFxToTemplate + commentId: N:DocFxToTemplate + href: DocFxToTemplate.html + name: DocFxToTemplate + nameWithType: DocFxToTemplate + fullName: DocFxToTemplate +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Generator.#ctor* + commentId: Overload:DocFxToTemplate.Generator.#ctor + href: DocFxToTemplate.Generator.html#DocFxToTemplate_Generator__ctor_Microsoft_Extensions_Logging_ILogger_DocFxToTemplate_Generator__DocFxToTemplate_GeneratorOptions_ + name: Generator + nameWithType: Generator.Generator + fullName: DocFxToTemplate.Generator.Generator + nameWithType.vb: Generator.New + fullName.vb: DocFxToTemplate.Generator.New + name.vb: New +- uid: Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator} + commentId: T:Microsoft.Extensions.Logging.ILogger{DocFxToTemplate.Generator} + parent: Microsoft.Extensions.Logging + definition: Microsoft.Extensions.Logging.ILogger`1 + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 + name: ILogger + nameWithType: ILogger + fullName: Microsoft.Extensions.Logging.ILogger + nameWithType.vb: ILogger(Of Generator) + fullName.vb: Microsoft.Extensions.Logging.ILogger(Of DocFxToTemplate.Generator) + name.vb: ILogger(Of Generator) + spec.csharp: + - uid: Microsoft.Extensions.Logging.ILogger`1 + name: ILogger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 + - name: < + - uid: DocFxToTemplate.Generator + name: Generator + href: DocFxToTemplate.Generator.html + - name: '>' + spec.vb: + - uid: Microsoft.Extensions.Logging.ILogger`1 + name: ILogger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Generator + name: Generator + href: DocFxToTemplate.Generator.html + - name: ) +- uid: DocFxToTemplate.GeneratorOptions + commentId: T:DocFxToTemplate.GeneratorOptions + parent: DocFxToTemplate + href: DocFxToTemplate.GeneratorOptions.html + name: GeneratorOptions + nameWithType: GeneratorOptions + fullName: DocFxToTemplate.GeneratorOptions +- uid: Microsoft.Extensions.Logging.ILogger`1 + commentId: T:Microsoft.Extensions.Logging.ILogger`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 + name: ILogger + nameWithType: ILogger + fullName: Microsoft.Extensions.Logging.ILogger + nameWithType.vb: ILogger(Of TCategoryName) + fullName.vb: Microsoft.Extensions.Logging.ILogger(Of TCategoryName) + name.vb: ILogger(Of TCategoryName) + spec.csharp: + - uid: Microsoft.Extensions.Logging.ILogger`1 + name: ILogger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 + - name: < + - name: TCategoryName + - name: '>' + spec.vb: + - uid: Microsoft.Extensions.Logging.ILogger`1 + name: ILogger + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging.ilogger-1 + - name: ( + - name: Of + - name: " " + - name: TCategoryName + - name: ) +- uid: Microsoft.Extensions.Logging + commentId: N:Microsoft.Extensions.Logging + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft + name: Microsoft.Extensions.Logging + nameWithType: Microsoft.Extensions.Logging + fullName: Microsoft.Extensions.Logging + spec.csharp: + - uid: Microsoft + name: Microsoft + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft + - name: . + - uid: Microsoft.Extensions + name: Extensions + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions + - name: . + - uid: Microsoft.Extensions.Logging + name: Logging + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging + spec.vb: + - uid: Microsoft + name: Microsoft + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft + - name: . + - uid: Microsoft.Extensions + name: Extensions + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions + - name: . + - uid: Microsoft.Extensions.Logging + name: Logging + isExternal: true + href: https://learn.microsoft.com/dotnet/api/microsoft.extensions.logging +- uid: DocFxToTemplate.Generator.Generate* + commentId: Overload:DocFxToTemplate.Generator.Generate + href: DocFxToTemplate.Generator.html#DocFxToTemplate_Generator_Generate + name: Generate + nameWithType: Generator.Generate + fullName: DocFxToTemplate.Generator.Generate +- uid: System.Threading.Tasks.Task + commentId: T:System.Threading.Tasks.Task + parent: System.Threading.Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task + name: Task + nameWithType: Task + fullName: System.Threading.Tasks.Task +- uid: System.Threading.Tasks + commentId: N:System.Threading.Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Threading.Tasks + nameWithType: System.Threading.Tasks + fullName: System.Threading.Tasks + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Threading + name: Threading + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading + - name: . + - uid: System.Threading.Tasks + name: Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Threading + name: Threading + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading + - name: . + - uid: System.Threading.Tasks + name: Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks diff --git a/api/DocFxToTemplate.GeneratorOptions.yml b/api/DocFxToTemplate.GeneratorOptions.yml new file mode 100644 index 0000000..f2eca19 --- /dev/null +++ b/api/DocFxToTemplate.GeneratorOptions.yml @@ -0,0 +1,385 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.GeneratorOptions + commentId: T:DocFxToTemplate.GeneratorOptions + id: GeneratorOptions + parent: DocFxToTemplate + children: + - DocFxToTemplate.GeneratorOptions.IndexSlug + - DocFxToTemplate.GeneratorOptions.OutputPath + - DocFxToTemplate.GeneratorOptions.YamlPath + langs: + - csharp + - vb + name: GeneratorOptions + nameWithType: GeneratorOptions + fullName: DocFxToTemplate.GeneratorOptions + type: Class + source: + id: GeneratorOptions + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs + startLine: 2 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public class GeneratorOptions + content.vb: Public Class GeneratorOptions + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.GeneratorOptions.YamlPath + commentId: P:DocFxToTemplate.GeneratorOptions.YamlPath + id: YamlPath + parent: DocFxToTemplate.GeneratorOptions + langs: + - csharp + - vb + name: YamlPath + nameWithType: GeneratorOptions.YamlPath + fullName: DocFxToTemplate.GeneratorOptions.YamlPath + type: Property + source: + id: YamlPath + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs + startLine: 4 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public required string YamlPath { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property YamlPath As String + overload: DocFxToTemplate.GeneratorOptions.YamlPath* +- uid: DocFxToTemplate.GeneratorOptions.OutputPath + commentId: P:DocFxToTemplate.GeneratorOptions.OutputPath + id: OutputPath + parent: DocFxToTemplate.GeneratorOptions + langs: + - csharp + - vb + name: OutputPath + nameWithType: GeneratorOptions.OutputPath + fullName: DocFxToTemplate.GeneratorOptions.OutputPath + type: Property + source: + id: OutputPath + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs + startLine: 5 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public required string OutputPath { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property OutputPath As String + overload: DocFxToTemplate.GeneratorOptions.OutputPath* +- uid: DocFxToTemplate.GeneratorOptions.IndexSlug + commentId: P:DocFxToTemplate.GeneratorOptions.IndexSlug + id: IndexSlug + parent: DocFxToTemplate.GeneratorOptions + langs: + - csharp + - vb + name: IndexSlug + nameWithType: GeneratorOptions.IndexSlug + fullName: DocFxToTemplate.GeneratorOptions.IndexSlug + type: Property + source: + id: IndexSlug + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs + startLine: 7 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate + syntax: + content: public string IndexSlug { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property IndexSlug As String + overload: DocFxToTemplate.GeneratorOptions.IndexSlug* +references: +- uid: DocFxToTemplate + commentId: N:DocFxToTemplate + href: DocFxToTemplate.html + name: DocFxToTemplate + nameWithType: DocFxToTemplate + fullName: DocFxToTemplate +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.GeneratorOptions.YamlPath* + commentId: Overload:DocFxToTemplate.GeneratorOptions.YamlPath + href: DocFxToTemplate.GeneratorOptions.html#DocFxToTemplate_GeneratorOptions_YamlPath + name: YamlPath + nameWithType: GeneratorOptions.YamlPath + fullName: DocFxToTemplate.GeneratorOptions.YamlPath +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.GeneratorOptions.OutputPath* + commentId: Overload:DocFxToTemplate.GeneratorOptions.OutputPath + href: DocFxToTemplate.GeneratorOptions.html#DocFxToTemplate_GeneratorOptions_OutputPath + name: OutputPath + nameWithType: GeneratorOptions.OutputPath + fullName: DocFxToTemplate.GeneratorOptions.OutputPath +- uid: DocFxToTemplate.GeneratorOptions.IndexSlug* + commentId: Overload:DocFxToTemplate.GeneratorOptions.IndexSlug + href: DocFxToTemplate.GeneratorOptions.html#DocFxToTemplate_GeneratorOptions_IndexSlug + name: IndexSlug + nameWithType: GeneratorOptions.IndexSlug + fullName: DocFxToTemplate.GeneratorOptions.IndexSlug diff --git a/api/DocFxToTemplate.Models.DocFx.AdditionalNotes.yml b/api/DocFxToTemplate.Models.DocFx.AdditionalNotes.yml new file mode 100644 index 0000000..f6d3df7 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.AdditionalNotes.yml @@ -0,0 +1,478 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes + commentId: T:DocFxToTemplate.Models.DocFx.AdditionalNotes + id: AdditionalNotes + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller + - DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer + - DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor + langs: + - csharp + - vb + name: AdditionalNotes + nameWithType: AdditionalNotes + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes + type: Class + source: + id: AdditionalNotes + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class AdditionalNotes + content.vb: Public Class AdditionalNotes + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller + commentId: P:DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller + id: Caller + parent: DocFxToTemplate.Models.DocFx.AdditionalNotes + langs: + - csharp + - vb + name: Caller + nameWithType: AdditionalNotes.Caller + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller + type: Property + source: + id: Caller + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "caller")] + + [JsonPropertyName("caller")] + + public string Caller { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Caller As String + overload: DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: caller + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: caller +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer + commentId: P:DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer + id: Implementer + parent: DocFxToTemplate.Models.DocFx.AdditionalNotes + langs: + - csharp + - vb + name: Implementer + nameWithType: AdditionalNotes.Implementer + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer + type: Property + source: + id: Implementer + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "implementer")] + + [JsonPropertyName("implementer")] + + public string Implementer { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Implementer As String + overload: DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: implementer + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: implementer +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor + commentId: P:DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor + id: Inheritor + parent: DocFxToTemplate.Models.DocFx.AdditionalNotes + langs: + - csharp + - vb + name: Inheritor + nameWithType: AdditionalNotes.Inheritor + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor + type: Property + source: + id: Inheritor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "inheritor")] + + [JsonPropertyName("inheritor")] + + public string Inheritor { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Inheritor As String + overload: DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: inheritor + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: inheritor +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller* + commentId: Overload:DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller + href: DocFxToTemplate.Models.DocFx.AdditionalNotes.html#DocFxToTemplate_Models_DocFx_AdditionalNotes_Caller + name: Caller + nameWithType: AdditionalNotes.Caller + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes.Caller +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer* + commentId: Overload:DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer + href: DocFxToTemplate.Models.DocFx.AdditionalNotes.html#DocFxToTemplate_Models_DocFx_AdditionalNotes_Implementer + name: Implementer + nameWithType: AdditionalNotes.Implementer + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes.Implementer +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor* + commentId: Overload:DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor + href: DocFxToTemplate.Models.DocFx.AdditionalNotes.html#DocFxToTemplate_Models_DocFx_AdditionalNotes_Inheritor + name: Inheritor + nameWithType: AdditionalNotes.Inheritor + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes.Inheritor diff --git a/api/DocFxToTemplate.Models.DocFx.ApiParameter.yml b/api/DocFxToTemplate.Models.DocFx.ApiParameter.yml new file mode 100644 index 0000000..f247f3c --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.ApiParameter.yml @@ -0,0 +1,712 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.ApiParameter + commentId: T:DocFxToTemplate.Models.DocFx.ApiParameter + id: ApiParameter + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.ApiParameter.Attributes + - DocFxToTemplate.Models.DocFx.ApiParameter.Description + - DocFxToTemplate.Models.DocFx.ApiParameter.Name + - DocFxToTemplate.Models.DocFx.ApiParameter.Reference + - DocFxToTemplate.Models.DocFx.ApiParameter.Type + langs: + - csharp + - vb + name: ApiParameter + nameWithType: ApiParameter + fullName: DocFxToTemplate.Models.DocFx.ApiParameter + type: Class + source: + id: ApiParameter + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class ApiParameter + content.vb: Public Class ApiParameter + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Name + commentId: P:DocFxToTemplate.Models.DocFx.ApiParameter.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.ApiParameter + langs: + - csharp + - vb + name: Name + nameWithType: ApiParameter.Name + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs + startLine: 12 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "id")] + + [JsonPropertyName("id")] + + [MergeOption(MergeOption.MergeKey)] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.ApiParameter.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: id + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: id + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 0 +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Type + commentId: P:DocFxToTemplate.Models.DocFx.ApiParameter.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.ApiParameter + langs: + - csharp + - vb + name: Type + nameWithType: ApiParameter.Type + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Type + type: Property + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs + startLine: 17 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "type")] + + [JsonPropertyName("type")] + + public string Type { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Type As String + overload: DocFxToTemplate.Models.DocFx.ApiParameter.Type* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: type + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: type +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Description + commentId: P:DocFxToTemplate.Models.DocFx.ApiParameter.Description + id: Description + parent: DocFxToTemplate.Models.DocFx.ApiParameter + langs: + - csharp + - vb + name: Description + nameWithType: ApiParameter.Description + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Description + type: Property + source: + id: Description + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs + startLine: 22 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "description")] + + [JsonPropertyName("description")] + + public string Description { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Description As String + overload: DocFxToTemplate.Models.DocFx.ApiParameter.Description* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: description + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: description +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Attributes + commentId: P:DocFxToTemplate.Models.DocFx.ApiParameter.Attributes + id: Attributes + parent: DocFxToTemplate.Models.DocFx.ApiParameter + langs: + - csharp + - vb + name: Attributes + nameWithType: ApiParameter.Attributes + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Attributes + type: Property + source: + id: Attributes + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs + startLine: 27 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "attributes")] + + [JsonPropertyName("attributes")] + + [MergeOption(MergeOption.Ignore)] + + public List Attributes { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.AttributeInfo} + content.vb: >- + + + + + + + Public Property Attributes As List(Of AttributeInfo) + overload: DocFxToTemplate.Models.DocFx.ApiParameter.Attributes* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: attributes + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: attributes + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Reference + commentId: P:DocFxToTemplate.Models.DocFx.ApiParameter.Reference + id: Reference + parent: DocFxToTemplate.Models.DocFx.ApiParameter + langs: + - csharp + - vb + name: Reference + nameWithType: ApiParameter.Reference + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Reference + type: Property + source: + id: Reference + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs + startLine: 32 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public ReferenceViewModel? Reference { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ReferenceViewModel + content.vb: >- + + + + + + + Public Property Reference As ReferenceViewModel + overload: DocFxToTemplate.Models.DocFx.ApiParameter.Reference* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.ApiParameter.Name + href: DocFxToTemplate.Models.DocFx.ApiParameter.html#DocFxToTemplate_Models_DocFx_ApiParameter_Name + name: Name + nameWithType: ApiParameter.Name + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Type* + commentId: Overload:DocFxToTemplate.Models.DocFx.ApiParameter.Type + href: DocFxToTemplate.Models.DocFx.ApiParameter.html#DocFxToTemplate_Models_DocFx_ApiParameter_Type + name: Type + nameWithType: ApiParameter.Type + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Type +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Description* + commentId: Overload:DocFxToTemplate.Models.DocFx.ApiParameter.Description + href: DocFxToTemplate.Models.DocFx.ApiParameter.html#DocFxToTemplate_Models_DocFx_ApiParameter_Description + name: Description + nameWithType: ApiParameter.Description + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Description +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Attributes* + commentId: Overload:DocFxToTemplate.Models.DocFx.ApiParameter.Attributes + href: DocFxToTemplate.Models.DocFx.ApiParameter.html#DocFxToTemplate_Models_DocFx_ApiParameter_Attributes + name: Attributes + nameWithType: ApiParameter.Attributes + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Attributes +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.AttributeInfo} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.AttributeInfo} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of AttributeInfo) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.AttributeInfo) + name.vb: List(Of AttributeInfo) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.AttributeInfo + name: AttributeInfo + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.AttributeInfo + name: AttributeInfo + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.ApiParameter.Reference* + commentId: Overload:DocFxToTemplate.Models.DocFx.ApiParameter.Reference + href: DocFxToTemplate.Models.DocFx.ApiParameter.html#DocFxToTemplate_Models_DocFx_ApiParameter_Reference + name: Reference + nameWithType: ApiParameter.Reference + fullName: DocFxToTemplate.Models.DocFx.ApiParameter.Reference +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ReferenceViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html + name: ReferenceViewModel + nameWithType: ReferenceViewModel + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel diff --git a/api/DocFxToTemplate.Models.DocFx.ArgumentInfo.yml b/api/DocFxToTemplate.Models.DocFx.ArgumentInfo.yml new file mode 100644 index 0000000..4763699 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.ArgumentInfo.yml @@ -0,0 +1,423 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.ArgumentInfo + commentId: T:DocFxToTemplate.Models.DocFx.ArgumentInfo + id: ArgumentInfo + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.ArgumentInfo.Type + - DocFxToTemplate.Models.DocFx.ArgumentInfo.Value + langs: + - csharp + - vb + name: ArgumentInfo + nameWithType: ArgumentInfo + fullName: DocFxToTemplate.Models.DocFx.ArgumentInfo + type: Class + source: + id: ArgumentInfo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ArgumentInfo.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class ArgumentInfo + content.vb: Public Class ArgumentInfo + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.ArgumentInfo.Type + commentId: P:DocFxToTemplate.Models.DocFx.ArgumentInfo.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.ArgumentInfo + langs: + - csharp + - vb + name: Type + nameWithType: ArgumentInfo.Type + fullName: DocFxToTemplate.Models.DocFx.ArgumentInfo.Type + type: Property + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ArgumentInfo.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "type")] + + [JsonPropertyName("type")] + + public string Type { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Type As String + overload: DocFxToTemplate.Models.DocFx.ArgumentInfo.Type* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: type + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: type +- uid: DocFxToTemplate.Models.DocFx.ArgumentInfo.Value + commentId: P:DocFxToTemplate.Models.DocFx.ArgumentInfo.Value + id: Value + parent: DocFxToTemplate.Models.DocFx.ArgumentInfo + langs: + - csharp + - vb + name: Value + nameWithType: ArgumentInfo.Value + fullName: DocFxToTemplate.Models.DocFx.ArgumentInfo.Value + type: Property + source: + id: Value + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ArgumentInfo.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "value")] + + [JsonPropertyName("value")] + + public object Value { get; set; } + parameters: [] + return: + type: System.Object + content.vb: >- + + + + + Public Property Value As Object + overload: DocFxToTemplate.Models.DocFx.ArgumentInfo.Value* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: value + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: value +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.ArgumentInfo.Type* + commentId: Overload:DocFxToTemplate.Models.DocFx.ArgumentInfo.Type + href: DocFxToTemplate.Models.DocFx.ArgumentInfo.html#DocFxToTemplate_Models_DocFx_ArgumentInfo_Type + name: Type + nameWithType: ArgumentInfo.Type + fullName: DocFxToTemplate.Models.DocFx.ArgumentInfo.Type +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.ArgumentInfo.Value* + commentId: Overload:DocFxToTemplate.Models.DocFx.ArgumentInfo.Value + href: DocFxToTemplate.Models.DocFx.ArgumentInfo.html#DocFxToTemplate_Models_DocFx_ArgumentInfo_Value + name: Value + nameWithType: ArgumentInfo.Value + fullName: DocFxToTemplate.Models.DocFx.ArgumentInfo.Value diff --git a/api/DocFxToTemplate.Models.DocFx.AttributeInfo.yml b/api/DocFxToTemplate.Models.DocFx.AttributeInfo.yml new file mode 100644 index 0000000..93636a1 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.AttributeInfo.yml @@ -0,0 +1,664 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo + commentId: T:DocFxToTemplate.Models.DocFx.AttributeInfo + id: AttributeInfo + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments + - DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor + - DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments + - DocFxToTemplate.Models.DocFx.AttributeInfo.Type + langs: + - csharp + - vb + name: AttributeInfo + nameWithType: AttributeInfo + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo + type: Class + source: + id: AttributeInfo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class AttributeInfo + content.vb: Public Class AttributeInfo + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.Type + commentId: P:DocFxToTemplate.Models.DocFx.AttributeInfo.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.AttributeInfo + langs: + - csharp + - vb + name: Type + nameWithType: AttributeInfo.Type + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.Type + type: Property + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "type")] + + [JsonPropertyName("type")] + + public string Type { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Type As String + overload: DocFxToTemplate.Models.DocFx.AttributeInfo.Type* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: type + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: type +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor + commentId: P:DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor + id: Constructor + parent: DocFxToTemplate.Models.DocFx.AttributeInfo + langs: + - csharp + - vb + name: Constructor + nameWithType: AttributeInfo.Constructor + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor + type: Property + source: + id: Constructor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "ctor")] + + [JsonPropertyName("ctor")] + + public string Constructor { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Constructor As String + overload: DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: ctor + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: ctor +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments + commentId: P:DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments + id: Arguments + parent: DocFxToTemplate.Models.DocFx.AttributeInfo + langs: + - csharp + - vb + name: Arguments + nameWithType: AttributeInfo.Arguments + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments + type: Property + source: + id: Arguments + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "arguments")] + + [JsonPropertyName("arguments")] + + public List Arguments { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ArgumentInfo} + content.vb: >- + + + + + Public Property Arguments As List(Of ArgumentInfo) + overload: DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: arguments + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: arguments +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments + commentId: P:DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments + id: NamedArguments + parent: DocFxToTemplate.Models.DocFx.AttributeInfo + langs: + - csharp + - vb + name: NamedArguments + nameWithType: AttributeInfo.NamedArguments + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments + type: Property + source: + id: NamedArguments + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs + startLine: 24 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "namedArguments")] + + [JsonPropertyName("namedArguments")] + + public List NamedArguments { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.NamedArgumentInfo} + content.vb: >- + + + + + Public Property NamedArguments As List(Of NamedArgumentInfo) + overload: DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: namedArguments + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: namedArguments +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.Type* + commentId: Overload:DocFxToTemplate.Models.DocFx.AttributeInfo.Type + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html#DocFxToTemplate_Models_DocFx_AttributeInfo_Type + name: Type + nameWithType: AttributeInfo.Type + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.Type +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor* + commentId: Overload:DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html#DocFxToTemplate_Models_DocFx_AttributeInfo_Constructor + name: Constructor + nameWithType: AttributeInfo.Constructor + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.Constructor +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments* + commentId: Overload:DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html#DocFxToTemplate_Models_DocFx_AttributeInfo_Arguments + name: Arguments + nameWithType: AttributeInfo.Arguments + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.Arguments +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ArgumentInfo} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ArgumentInfo} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of ArgumentInfo) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.ArgumentInfo) + name.vb: List(Of ArgumentInfo) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.ArgumentInfo + name: ArgumentInfo + href: DocFxToTemplate.Models.DocFx.ArgumentInfo.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.ArgumentInfo + name: ArgumentInfo + href: DocFxToTemplate.Models.DocFx.ArgumentInfo.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments* + commentId: Overload:DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html#DocFxToTemplate_Models_DocFx_AttributeInfo_NamedArguments + name: NamedArguments + nameWithType: AttributeInfo.NamedArguments + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo.NamedArguments +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.NamedArgumentInfo} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.NamedArgumentInfo} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of NamedArgumentInfo) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.NamedArgumentInfo) + name.vb: List(Of NamedArgumentInfo) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + name: NamedArgumentInfo + href: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + name: NamedArgumentInfo + href: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.html + - name: ) diff --git a/api/DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.yml b/api/DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.yml new file mode 100644 index 0000000..de9c841 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.yml @@ -0,0 +1,1978 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + id: ExtensibleMemberAttribute + parent: DocFxToTemplate.Models.DocFx.Attributes + children: + - DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + - DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + langs: + - csharp + - vb + name: ExtensibleMemberAttribute + nameWithType: ExtensibleMemberAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + type: Class + source: + id: ExtensibleMemberAttribute + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\ExtensibleMemberAttribute.cs + startLine: 2 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: 'public class ExtensibleMemberAttribute : Attribute' + content.vb: Public Class ExtensibleMemberAttribute Inherits Attribute + inheritance: + - System.Object + - System.Attribute + inheritedMembers: + - System.Attribute.Equals(System.Object) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetHashCode + - System.Attribute.IsDefaultAttribute + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.Match(System.Object) + - System.Attribute.TypeId + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + commentId: M:DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + id: '#ctor' + parent: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + langs: + - csharp + - vb + name: ExtensibleMemberAttribute() + nameWithType: ExtensibleMemberAttribute.ExtensibleMemberAttribute() + fullName: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.ExtensibleMemberAttribute() + type: Constructor + source: + id: .ctor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\ExtensibleMemberAttribute.cs + startLine: 4 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: public ExtensibleMemberAttribute() + content.vb: Public Sub New() + overload: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor* + nameWithType.vb: ExtensibleMemberAttribute.New() + fullName.vb: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.New() + name.vb: New() +- uid: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + commentId: M:DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + id: '#ctor(System.String)' + parent: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + langs: + - csharp + - vb + name: ExtensibleMemberAttribute(string) + nameWithType: ExtensibleMemberAttribute.ExtensibleMemberAttribute(string) + fullName: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.ExtensibleMemberAttribute(string) + type: Constructor + source: + id: .ctor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\ExtensibleMemberAttribute.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: public ExtensibleMemberAttribute(string member) + parameters: + - id: member + type: System.String + content.vb: Public Sub New(member As String) + overload: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor* + nameWithType.vb: ExtensibleMemberAttribute.New(String) + fullName.vb: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.New(String) + name.vb: New(String) +references: +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Attribute + commentId: T:System.Attribute + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute + name: Attribute + nameWithType: Attribute + fullName: System.Attribute +- uid: System.Attribute.Equals(System.Object) + commentId: M:System.Attribute.Equals(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + name: Equals(object) + nameWithType: Attribute.Equals(object) + fullName: System.Attribute.Equals(object) + nameWithType.vb: Attribute.Equals(Object) + fullName.vb: System.Attribute.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + name: GetCustomAttribute(Assembly, Type) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttribute(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttribute(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + name: GetCustomAttribute(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + name: GetCustomAttribute(Module, Type) + nameWithType: Attribute.GetCustomAttribute(Module, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttribute(Module, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Module, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttribute(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + name: GetCustomAttribute(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + name: GetCustomAttributes(Assembly) + nameWithType: Attribute.GetCustomAttributes(Assembly) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + name: GetCustomAttributes(Assembly, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, Boolean) + name.vb: GetCustomAttributes(Assembly, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + name: GetCustomAttributes(Assembly, Type) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttributes(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttributes(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + name: GetCustomAttributes(MemberInfo) + nameWithType: Attribute.GetCustomAttributes(MemberInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + name: GetCustomAttributes(MemberInfo, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + name: GetCustomAttributes(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + name: GetCustomAttributes(Module) + nameWithType: Attribute.GetCustomAttributes(Module) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + name: GetCustomAttributes(Module, bool) + nameWithType: Attribute.GetCustomAttributes(Module, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, Boolean) + name.vb: GetCustomAttributes(Module, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + name: GetCustomAttributes(Module, Type) + nameWithType: Attribute.GetCustomAttributes(Module, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttributes(Module, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Module, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttributes(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + name: GetCustomAttributes(ParameterInfo) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + name: GetCustomAttributes(ParameterInfo, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + name: GetCustomAttributes(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetHashCode + commentId: M:System.Attribute.GetHashCode + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + name: GetHashCode() + nameWithType: Attribute.GetHashCode() + fullName: System.Attribute.GetHashCode() + spec.csharp: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) +- uid: System.Attribute.IsDefaultAttribute + commentId: M:System.Attribute.IsDefaultAttribute + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + name: IsDefaultAttribute() + nameWithType: Attribute.IsDefaultAttribute() + fullName: System.Attribute.IsDefaultAttribute() + spec.csharp: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + name: IsDefined(Assembly, Type) + nameWithType: Attribute.IsDefined(Assembly, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + 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: IsDefined(Assembly, Type, bool) + nameWithType: Attribute.IsDefined(Assembly, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Assembly, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, Boolean) + name.vb: IsDefined(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + name: IsDefined(MemberInfo, Type) + nameWithType: Attribute.IsDefined(MemberInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: IsDefined(MemberInfo, Type, bool) + nameWithType: Attribute.IsDefined(MemberInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: IsDefined(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + name: IsDefined(Module, Type) + nameWithType: Attribute.IsDefined(Module, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + 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: IsDefined(Module, Type, bool) + nameWithType: Attribute.IsDefined(Module, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Module, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Module, System.Type, Boolean) + name.vb: IsDefined(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + name: IsDefined(ParameterInfo, Type) + nameWithType: Attribute.IsDefined(ParameterInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: IsDefined(ParameterInfo, Type, bool) + nameWithType: Attribute.IsDefined(ParameterInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: IsDefined(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.Match(System.Object) + commentId: M:System.Attribute.Match(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + name: Match(object) + nameWithType: Attribute.Match(object) + fullName: System.Attribute.Match(object) + nameWithType.vb: Attribute.Match(Object) + fullName.vb: System.Attribute.Match(Object) + name.vb: Match(Object) + spec.csharp: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.TypeId + commentId: P:System.Attribute.TypeId + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.typeid + name: TypeId + nameWithType: Attribute.TypeId + fullName: System.Attribute.TypeId +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor* + commentId: Overload:DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + href: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.html#DocFxToTemplate_Models_DocFx_Attributes_ExtensibleMemberAttribute__ctor + name: ExtensibleMemberAttribute + nameWithType: ExtensibleMemberAttribute.ExtensibleMemberAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.ExtensibleMemberAttribute + nameWithType.vb: ExtensibleMemberAttribute.New + fullName.vb: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.New + name.vb: New +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute.yml b/api/DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute.yml new file mode 100644 index 0000000..189d07c --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute.yml @@ -0,0 +1,1903 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + id: MarkdownContentAttribute + parent: DocFxToTemplate.Models.DocFx.Attributes + children: [] + langs: + - csharp + - vb + name: MarkdownContentAttribute + nameWithType: MarkdownContentAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + type: Class + source: + id: MarkdownContentAttribute + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MarkdownContentAttribute.cs + startLine: 2 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: 'public class MarkdownContentAttribute : Attribute' + content.vb: Public Class MarkdownContentAttribute Inherits Attribute + inheritance: + - System.Object + - System.Attribute + inheritedMembers: + - System.Attribute.Equals(System.Object) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetHashCode + - System.Attribute.IsDefaultAttribute + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.Match(System.Object) + - System.Attribute.TypeId + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Attribute + commentId: T:System.Attribute + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute + name: Attribute + nameWithType: Attribute + fullName: System.Attribute +- uid: System.Attribute.Equals(System.Object) + commentId: M:System.Attribute.Equals(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + name: Equals(object) + nameWithType: Attribute.Equals(object) + fullName: System.Attribute.Equals(object) + nameWithType.vb: Attribute.Equals(Object) + fullName.vb: System.Attribute.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + name: GetCustomAttribute(Assembly, Type) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttribute(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttribute(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + name: GetCustomAttribute(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + name: GetCustomAttribute(Module, Type) + nameWithType: Attribute.GetCustomAttribute(Module, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttribute(Module, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Module, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttribute(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + name: GetCustomAttribute(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + name: GetCustomAttributes(Assembly) + nameWithType: Attribute.GetCustomAttributes(Assembly) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + name: GetCustomAttributes(Assembly, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, Boolean) + name.vb: GetCustomAttributes(Assembly, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + name: GetCustomAttributes(Assembly, Type) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttributes(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttributes(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + name: GetCustomAttributes(MemberInfo) + nameWithType: Attribute.GetCustomAttributes(MemberInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + name: GetCustomAttributes(MemberInfo, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + name: GetCustomAttributes(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + name: GetCustomAttributes(Module) + nameWithType: Attribute.GetCustomAttributes(Module) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + name: GetCustomAttributes(Module, bool) + nameWithType: Attribute.GetCustomAttributes(Module, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, Boolean) + name.vb: GetCustomAttributes(Module, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + name: GetCustomAttributes(Module, Type) + nameWithType: Attribute.GetCustomAttributes(Module, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttributes(Module, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Module, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttributes(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + name: GetCustomAttributes(ParameterInfo) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + name: GetCustomAttributes(ParameterInfo, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + name: GetCustomAttributes(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetHashCode + commentId: M:System.Attribute.GetHashCode + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + name: GetHashCode() + nameWithType: Attribute.GetHashCode() + fullName: System.Attribute.GetHashCode() + spec.csharp: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) +- uid: System.Attribute.IsDefaultAttribute + commentId: M:System.Attribute.IsDefaultAttribute + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + name: IsDefaultAttribute() + nameWithType: Attribute.IsDefaultAttribute() + fullName: System.Attribute.IsDefaultAttribute() + spec.csharp: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + name: IsDefined(Assembly, Type) + nameWithType: Attribute.IsDefined(Assembly, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + 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: IsDefined(Assembly, Type, bool) + nameWithType: Attribute.IsDefined(Assembly, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Assembly, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, Boolean) + name.vb: IsDefined(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + name: IsDefined(MemberInfo, Type) + nameWithType: Attribute.IsDefined(MemberInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: IsDefined(MemberInfo, Type, bool) + nameWithType: Attribute.IsDefined(MemberInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: IsDefined(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + name: IsDefined(Module, Type) + nameWithType: Attribute.IsDefined(Module, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + 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: IsDefined(Module, Type, bool) + nameWithType: Attribute.IsDefined(Module, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Module, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Module, System.Type, Boolean) + name.vb: IsDefined(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + name: IsDefined(ParameterInfo, Type) + nameWithType: Attribute.IsDefined(ParameterInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: IsDefined(ParameterInfo, Type, bool) + nameWithType: Attribute.IsDefined(ParameterInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: IsDefined(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.Match(System.Object) + commentId: M:System.Attribute.Match(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + name: Match(object) + nameWithType: Attribute.Match(object) + fullName: System.Attribute.Match(object) + nameWithType.vb: Attribute.Match(Object) + fullName.vb: System.Attribute.Match(Object) + name.vb: Match(Object) + spec.csharp: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.TypeId + commentId: P:System.Attribute.TypeId + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.typeid + name: TypeId + nameWithType: Attribute.TypeId + fullName: System.Attribute.TypeId +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml b/api/DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml new file mode 100644 index 0000000..2c849c5 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Attributes.MergeOption.yml @@ -0,0 +1,139 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MergeOption + id: MergeOption + parent: DocFxToTemplate.Models.DocFx.Attributes + children: + - DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Ignore + - DocFxToTemplate.Models.DocFx.Attributes.MergeOption.MergeKey + - DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Replace + langs: + - csharp + - vb + name: MergeOption + nameWithType: MergeOption + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + type: Enum + source: + id: MergeOption + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: public enum MergeOption + content.vb: Public Enum MergeOption +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.MergeKey + commentId: F:DocFxToTemplate.Models.DocFx.Attributes.MergeOption.MergeKey + id: MergeKey + parent: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + langs: + - csharp + - vb + name: MergeKey + nameWithType: MergeOption.MergeKey + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.MergeKey + type: Field + source: + id: MergeKey + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: MergeKey = 0 + return: + type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Ignore + commentId: F:DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Ignore + id: Ignore + parent: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + langs: + - csharp + - vb + name: Ignore + nameWithType: MergeOption.Ignore + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Ignore + type: Field + source: + id: Ignore + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs + startLine: 12 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: Ignore = 1 + return: + type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Replace + commentId: F:DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Replace + id: Replace + parent: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + langs: + - csharp + - vb + name: Replace + nameWithType: MergeOption.Replace + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.Replace + type: Field + source: + id: Replace + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs + startLine: 13 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: Replace = 2 + return: + type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption +references: +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MergeOption + parent: DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.html + name: MergeOption + nameWithType: MergeOption + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption diff --git a/api/DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.yml b/api/DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.yml new file mode 100644 index 0000000..b2acf52 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.yml @@ -0,0 +1,1948 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + id: MergeOptionAttribute + parent: DocFxToTemplate.Models.DocFx.Attributes + children: + - DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + langs: + - csharp + - vb + name: MergeOptionAttribute + nameWithType: MergeOptionAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + type: Class + source: + id: MergeOptionAttribute + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs + startLine: 2 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: 'public class MergeOptionAttribute : Attribute' + content.vb: Public Class MergeOptionAttribute Inherits Attribute + inheritance: + - System.Object + - System.Attribute + inheritedMembers: + - System.Attribute.Equals(System.Object) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetHashCode + - System.Attribute.IsDefaultAttribute + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.Match(System.Object) + - System.Attribute.TypeId + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + commentId: M:DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + id: '#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption)' + parent: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + langs: + - csharp + - vb + name: MergeOptionAttribute(MergeOption) + nameWithType: MergeOptionAttribute.MergeOptionAttribute(MergeOption) + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.MergeOptionAttribute(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + type: Constructor + source: + id: .ctor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs + startLine: 4 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: public MergeOptionAttribute(MergeOption option) + parameters: + - id: option + type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + content.vb: Public Sub New([option] As MergeOption) + overload: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor* + nameWithType.vb: MergeOptionAttribute.New(MergeOption) + fullName.vb: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.New(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + name.vb: New(MergeOption) +references: +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Attribute + commentId: T:System.Attribute + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute + name: Attribute + nameWithType: Attribute + fullName: System.Attribute +- uid: System.Attribute.Equals(System.Object) + commentId: M:System.Attribute.Equals(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + name: Equals(object) + nameWithType: Attribute.Equals(object) + fullName: System.Attribute.Equals(object) + nameWithType.vb: Attribute.Equals(Object) + fullName.vb: System.Attribute.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + name: GetCustomAttribute(Assembly, Type) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttribute(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttribute(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + name: GetCustomAttribute(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + name: GetCustomAttribute(Module, Type) + nameWithType: Attribute.GetCustomAttribute(Module, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttribute(Module, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Module, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttribute(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + name: GetCustomAttribute(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + name: GetCustomAttributes(Assembly) + nameWithType: Attribute.GetCustomAttributes(Assembly) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + name: GetCustomAttributes(Assembly, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, Boolean) + name.vb: GetCustomAttributes(Assembly, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + name: GetCustomAttributes(Assembly, Type) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttributes(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttributes(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + name: GetCustomAttributes(MemberInfo) + nameWithType: Attribute.GetCustomAttributes(MemberInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + name: GetCustomAttributes(MemberInfo, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + name: GetCustomAttributes(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + name: GetCustomAttributes(Module) + nameWithType: Attribute.GetCustomAttributes(Module) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + name: GetCustomAttributes(Module, bool) + nameWithType: Attribute.GetCustomAttributes(Module, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, Boolean) + name.vb: GetCustomAttributes(Module, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + name: GetCustomAttributes(Module, Type) + nameWithType: Attribute.GetCustomAttributes(Module, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttributes(Module, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Module, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttributes(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + name: GetCustomAttributes(ParameterInfo) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + name: GetCustomAttributes(ParameterInfo, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + name: GetCustomAttributes(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetHashCode + commentId: M:System.Attribute.GetHashCode + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + name: GetHashCode() + nameWithType: Attribute.GetHashCode() + fullName: System.Attribute.GetHashCode() + spec.csharp: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) +- uid: System.Attribute.IsDefaultAttribute + commentId: M:System.Attribute.IsDefaultAttribute + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + name: IsDefaultAttribute() + nameWithType: Attribute.IsDefaultAttribute() + fullName: System.Attribute.IsDefaultAttribute() + spec.csharp: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + name: IsDefined(Assembly, Type) + nameWithType: Attribute.IsDefined(Assembly, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + 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: IsDefined(Assembly, Type, bool) + nameWithType: Attribute.IsDefined(Assembly, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Assembly, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, Boolean) + name.vb: IsDefined(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + name: IsDefined(MemberInfo, Type) + nameWithType: Attribute.IsDefined(MemberInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: IsDefined(MemberInfo, Type, bool) + nameWithType: Attribute.IsDefined(MemberInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: IsDefined(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + name: IsDefined(Module, Type) + nameWithType: Attribute.IsDefined(Module, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + 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: IsDefined(Module, Type, bool) + nameWithType: Attribute.IsDefined(Module, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Module, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Module, System.Type, Boolean) + name.vb: IsDefined(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + name: IsDefined(ParameterInfo, Type) + nameWithType: Attribute.IsDefined(ParameterInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: IsDefined(ParameterInfo, Type, bool) + nameWithType: Attribute.IsDefined(ParameterInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: IsDefined(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.Match(System.Object) + commentId: M:System.Attribute.Match(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + name: Match(object) + nameWithType: Attribute.Match(object) + fullName: System.Attribute.Match(object) + nameWithType.vb: Attribute.Match(Object) + fullName.vb: System.Attribute.Match(Object) + name.vb: Match(Object) + spec.csharp: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.TypeId + commentId: P:System.Attribute.TypeId + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.typeid + name: TypeId + nameWithType: Attribute.TypeId + fullName: System.Attribute.TypeId +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor* + commentId: Overload:DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor + href: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.html#DocFxToTemplate_Models_DocFx_Attributes_MergeOptionAttribute__ctor_DocFxToTemplate_Models_DocFx_Attributes_MergeOption_ + name: MergeOptionAttribute + nameWithType: MergeOptionAttribute.MergeOptionAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.MergeOptionAttribute + nameWithType.vb: MergeOptionAttribute.New + fullName.vb: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.New + name.vb: New +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MergeOption + parent: DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.html + name: MergeOption + nameWithType: MergeOption + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption diff --git a/api/DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute.yml b/api/DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute.yml new file mode 100644 index 0000000..bf54fa5 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute.yml @@ -0,0 +1,1903 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + id: UniqueIdentityReferenceAttribute + parent: DocFxToTemplate.Models.DocFx.Attributes + children: [] + langs: + - csharp + - vb + name: UniqueIdentityReferenceAttribute + nameWithType: UniqueIdentityReferenceAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + type: Class + source: + id: UniqueIdentityReferenceAttribute + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\UniqueIdentityReferenceAttribute.cs + startLine: 2 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx.Attributes + syntax: + content: 'public class UniqueIdentityReferenceAttribute : Attribute' + content.vb: Public Class UniqueIdentityReferenceAttribute Inherits Attribute + inheritance: + - System.Object + - System.Attribute + inheritedMembers: + - System.Attribute.Equals(System.Object) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.GetHashCode + - System.Attribute.IsDefaultAttribute + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + - System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type) + - System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + - System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + - System.Attribute.Match(System.Object) + - System.Attribute.TypeId + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Attribute + commentId: T:System.Attribute + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute + name: Attribute + nameWithType: Attribute + fullName: System.Attribute +- uid: System.Attribute.Equals(System.Object) + commentId: M:System.Attribute.Equals(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + name: Equals(object) + nameWithType: Attribute.Equals(object) + fullName: System.Attribute.Equals(object) + nameWithType.vb: Attribute.Equals(Object) + fullName.vb: System.Attribute.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + name: GetCustomAttribute(Assembly, Type) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttribute(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttribute(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + name: GetCustomAttribute(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + name: GetCustomAttribute(Module, Type) + nameWithType: Attribute.GetCustomAttribute(Module, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttribute(Module, Type, bool) + nameWithType: Attribute.GetCustomAttribute(Module, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttribute(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + name: GetCustomAttribute(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttribute(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttribute(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttribute(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttribute(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + name: GetCustomAttributes(Assembly) + nameWithType: Attribute.GetCustomAttributes(Assembly) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + name: GetCustomAttributes(Assembly, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, Boolean) + name.vb: GetCustomAttributes(Assembly, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + name: GetCustomAttributes(Assembly, Type) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + 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: GetCustomAttributes(Assembly, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Assembly, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Assembly, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, Boolean) + name.vb: GetCustomAttributes(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + name: GetCustomAttributes(MemberInfo) + nameWithType: Attribute.GetCustomAttributes(MemberInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + name: GetCustomAttributes(MemberInfo, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + name: GetCustomAttributes(MemberInfo, Type) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(MemberInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(MemberInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + name: GetCustomAttributes(Module) + nameWithType: Attribute.GetCustomAttributes(Module) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + name: GetCustomAttributes(Module, bool) + nameWithType: Attribute.GetCustomAttributes(Module, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, Boolean) + name.vb: GetCustomAttributes(Module, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + name: GetCustomAttributes(Module, Type) + nameWithType: Attribute.GetCustomAttributes(Module, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + 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: GetCustomAttributes(Module, Type, bool) + nameWithType: Attribute.GetCustomAttributes(Module, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(Module, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, Boolean) + name.vb: GetCustomAttributes(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + name: GetCustomAttributes(ParameterInfo) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + name: GetCustomAttributes(ParameterInfo, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + name: GetCustomAttributes(ParameterInfo, Type) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: GetCustomAttributes(ParameterInfo, Type, bool) + nameWithType: Attribute.GetCustomAttributes(ParameterInfo, Type, bool) + fullName: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.GetCustomAttributes(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: GetCustomAttributes(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: GetCustomAttributes + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.GetHashCode + commentId: M:System.Attribute.GetHashCode + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + name: GetHashCode() + nameWithType: Attribute.GetHashCode() + fullName: System.Attribute.GetHashCode() + spec.csharp: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode + - name: ( + - name: ) +- uid: System.Attribute.IsDefaultAttribute + commentId: M:System.Attribute.IsDefaultAttribute + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + name: IsDefaultAttribute() + nameWithType: Attribute.IsDefaultAttribute() + fullName: System.Attribute.IsDefaultAttribute() + spec.csharp: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) + spec.vb: + - uid: System.Attribute.IsDefaultAttribute + name: IsDefaultAttribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute + - name: ( + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + name: IsDefined(Assembly, Type) + nameWithType: Attribute.IsDefined(Assembly, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + 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: IsDefined(Assembly, Type, bool) + nameWithType: Attribute.IsDefined(Assembly, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Assembly, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, Boolean) + name.vb: IsDefined(Assembly, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Assembly,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Assembly + name: Assembly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.assembly + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + name: IsDefined(MemberInfo, Type) + nameWithType: Attribute.IsDefined(MemberInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + 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: IsDefined(MemberInfo, Type, bool) + nameWithType: Attribute.IsDefined(MemberInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(MemberInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, Boolean) + name.vb: IsDefined(MemberInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.MemberInfo + name: MemberInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + name: IsDefined(Module, Type) + nameWithType: Attribute.IsDefined(Module, Type) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + 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: IsDefined(Module, Type, bool) + nameWithType: Attribute.IsDefined(Module, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.Module, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(Module, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.Module, System.Type, Boolean) + name.vb: IsDefined(Module, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.Module,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean) + - name: ( + - uid: System.Reflection.Module + name: Module + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.module + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + name: IsDefined(ParameterInfo, Type) + nameWithType: Attribute.IsDefined(ParameterInfo, Type) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ) +- uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + commentId: M:System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + 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: IsDefined(ParameterInfo, Type, bool) + nameWithType: Attribute.IsDefined(ParameterInfo, Type, bool) + fullName: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, bool) + nameWithType.vb: Attribute.IsDefined(ParameterInfo, Type, Boolean) + fullName.vb: System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, Boolean) + name.vb: IsDefined(ParameterInfo, Type, Boolean) + spec.csharp: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: System.Attribute.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean) + name: IsDefined + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean) + - name: ( + - uid: System.Reflection.ParameterInfo + name: ParameterInfo + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.reflection.parameterinfo + - name: ',' + - name: " " + - uid: System.Type + name: Type + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.type + - name: ',' + - name: " " + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: System.Attribute.Match(System.Object) + commentId: M:System.Attribute.Match(System.Object) + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + name: Match(object) + nameWithType: Attribute.Match(object) + fullName: System.Attribute.Match(object) + nameWithType.vb: Attribute.Match(Object) + fullName.vb: System.Attribute.Match(Object) + name.vb: Match(Object) + spec.csharp: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Attribute.Match(System.Object) + name: Match + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.match + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Attribute.TypeId + commentId: P:System.Attribute.TypeId + parent: System.Attribute + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.attribute.typeid + name: TypeId + nameWithType: Attribute.TypeId + fullName: System.Attribute.TypeId +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/api/DocFxToTemplate.Models.DocFx.Attributes.yml b/api/DocFxToTemplate.Models.DocFx.Attributes.yml new file mode 100644 index 0000000..8508bbd --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Attributes.yml @@ -0,0 +1,92 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + id: DocFxToTemplate.Models.DocFx.Attributes + children: + - DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + - DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + - DocFxToTemplate.Models.DocFx.Attributes.MergeOption + - DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + - DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + langs: + - csharp + - vb + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + type: Namespace + assemblies: + - DocFxToTemplate +references: +- uid: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + parent: DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.html + name: ExtensibleMemberAttribute + nameWithType: ExtensibleMemberAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute +- uid: DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + href: DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute.html + name: MarkdownContentAttribute + nameWithType: MarkdownContentAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + parent: DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.html + name: MergeOptionAttribute + nameWithType: MergeOptionAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute +- uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.MergeOption + parent: DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.MergeOption.html + name: MergeOption + nameWithType: MergeOption + fullName: DocFxToTemplate.Models.DocFx.Attributes.MergeOption +- uid: DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + commentId: T:DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + href: DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute.html + name: UniqueIdentityReferenceAttribute + nameWithType: UniqueIdentityReferenceAttribute + fullName: DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute +- uid: DocFxToTemplate.Models.DocFx.Attributes + commentId: N:DocFxToTemplate.Models.DocFx.Attributes + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx.Attributes + nameWithType: DocFxToTemplate.Models.DocFx.Attributes + fullName: DocFxToTemplate.Models.DocFx.Attributes + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Attributes + name: Attributes + href: DocFxToTemplate.Models.DocFx.Attributes.html diff --git a/api/DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.yml b/api/DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.yml new file mode 100644 index 0000000..cabbb11 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.yml @@ -0,0 +1,579 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + id: CompositeDictionary.Builder + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add``1(System.String,System.Collections.Generic.IDictionary{System.String,``0},System.Func{System.Object,``0}) + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create + langs: + - csharp + - vb + name: CompositeDictionary.Builder + nameWithType: CompositeDictionary.Builder + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + type: Class + source: + id: Builder + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 171 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public sealed class CompositeDictionary.Builder + content.vb: Public NotInheritable Class CompositeDictionary.Builder + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add``1(System.String,System.Collections.Generic.IDictionary{System.String,``0},System.Func{System.Object,``0}) + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add``1(System.String,System.Collections.Generic.IDictionary{System.String,``0},System.Func{System.Object,``0}) + id: Add``1(System.String,System.Collections.Generic.IDictionary{System.String,``0},System.Func{System.Object,``0}) + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + langs: + - csharp + - vb + name: Add(string, IDictionary, Func) + nameWithType: CompositeDictionary.Builder.Add(string, IDictionary, Func) + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add(string, System.Collections.Generic.IDictionary, System.Func) + type: Method + source: + id: Add + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 179 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public CompositeDictionary.Builder Add(string prefix, IDictionary dict, Func valueConverter = null) + parameters: + - id: prefix + type: System.String + - id: dict + type: System.Collections.Generic.IDictionary{System.String,{TValue}} + - id: valueConverter + type: System.Func{System.Object,{TValue}} + typeParameters: + - id: TValue + return: + type: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + content.vb: Public Function Add(Of TValue)(prefix As String, dict As IDictionary(Of String, TValue), valueConverter As Func(Of Object, TValue) = Nothing) As CompositeDictionary.Builder + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add* + nameWithType.vb: CompositeDictionary.Builder.Add(Of TValue)(String, IDictionary(Of String, TValue), Func(Of Object, TValue)) + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add(Of TValue)(String, System.Collections.Generic.IDictionary(Of String, TValue), System.Func(Of Object, TValue)) + name.vb: Add(Of TValue)(String, IDictionary(Of String, TValue), Func(Of Object, TValue)) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create + id: Create + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + langs: + - csharp + - vb + name: Create() + nameWithType: CompositeDictionary.Builder.Create() + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create() + type: Method + source: + id: Create + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 212 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public CompositeDictionary Create() + return: + type: DocFxToTemplate.Models.DocFx.CompositeDictionary + content.vb: Public Function Create() As CompositeDictionary + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create* +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Builder_Add__1_System_String_System_Collections_Generic_IDictionary_System_String___0__System_Func_System_Object___0__ + name: Add + nameWithType: CompositeDictionary.Builder.Add + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Add +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Collections.Generic.IDictionary{System.String,{TValue}} + commentId: T:System.Collections.Generic.IDictionary{System.String,``0} + parent: System.Collections.Generic + definition: System.Collections.Generic.IDictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + name: IDictionary + nameWithType: IDictionary + fullName: System.Collections.Generic.IDictionary + nameWithType.vb: IDictionary(Of String, TValue) + fullName.vb: System.Collections.Generic.IDictionary(Of String, TValue) + name.vb: IDictionary(Of String, TValue) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Func{System.Object,{TValue}} + commentId: T:System.Func{System.Object,``0} + parent: System + definition: System.Func`2 + href: https://learn.microsoft.com/dotnet/api/system.func-2 + name: Func + nameWithType: Func + fullName: System.Func + nameWithType.vb: Func(Of Object, TValue) + fullName.vb: System.Func(Of Object, TValue) + name.vb: Func(Of Object, TValue) + spec.csharp: + - uid: System.Func`2 + name: Func + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.func-2 + - name: < + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Func`2 + name: Func + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.func-2 + - name: ( + - name: Of + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + name: CompositeDictionary.Builder + nameWithType: CompositeDictionary.Builder + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: Builder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: Builder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html +- uid: System.Collections.Generic.IDictionary`2 + commentId: T:System.Collections.Generic.IDictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + name: IDictionary + nameWithType: IDictionary + fullName: System.Collections.Generic.IDictionary + nameWithType.vb: IDictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue) + name.vb: IDictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: System.Func`2 + commentId: T:System.Func`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.func-2 + name: Func + nameWithType: Func + fullName: System.Func + nameWithType.vb: Func(Of T, TResult) + fullName.vb: System.Func(Of T, TResult) + name.vb: Func(Of T, TResult) + spec.csharp: + - uid: System.Func`2 + name: Func + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.func-2 + - name: < + - name: T + - name: ',' + - name: " " + - name: TResult + - name: '>' + spec.vb: + - uid: System.Func`2 + name: Func + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.func-2 + - name: ( + - name: Of + - name: " " + - name: T + - name: ',' + - name: " " + - name: TResult + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Builder_Create + name: Create + nameWithType: CompositeDictionary.Builder.Create + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.Create +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + name: CompositeDictionary + nameWithType: CompositeDictionary + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary diff --git a/api/DocFxToTemplate.Models.DocFx.CompositeDictionary.yml b/api/DocFxToTemplate.Models.DocFx.CompositeDictionary.yml new file mode 100644 index 0000000..1e2c844 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.CompositeDictionary.yml @@ -0,0 +1,1920 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary + id: CompositeDictionary + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Add(System.String,System.Object) + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear + - DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey(System.String) + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Count + - DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder + - DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator + - DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Item(System.String) + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove(System.String) + - DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue(System.String,System.Object@) + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Values + langs: + - csharp + - vb + name: CompositeDictionary + nameWithType: CompositeDictionary + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary + type: Class + source: + id: CompositeDictionary + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: 'public class CompositeDictionary : IDictionary, ICollection>, IEnumerable>, IEnumerable' + content.vb: Public Class CompositeDictionary Implements IDictionary(Of String, Object), ICollection(Of KeyValuePair(Of String, Object)), IEnumerable(Of KeyValuePair(Of String, Object)), IEnumerable + inheritance: + - System.Object + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object} + - System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + - System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + - System.Collections.IEnumerable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor + id: '#ctor' + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: CompositeDictionary() + nameWithType: CompositeDictionary.CompositeDictionary() + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.CompositeDictionary() + type: Constructor + source: + id: .ctor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 13 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public CompositeDictionary() + content.vb: Public Sub New() + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor* + nameWithType.vb: CompositeDictionary.New() + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.New() + name.vb: New() +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Item(System.String) + commentId: P:DocFxToTemplate.Models.DocFx.CompositeDictionary.Item(System.String) + id: Item(System.String) + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: this[string] + nameWithType: CompositeDictionary.this[string] + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.this[string] + type: Property + source: + id: this[] + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 23 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Gets or sets the element with the specified key. + example: [] + syntax: + content: public object this[string key] { get; set; } + parameters: + - id: key + type: System.String + description: The key of the element to get or set. + return: + type: System.Object + description: The element with the specified key. + content.vb: Public Default Property this[](key As String) As Object + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Item* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: key is null. + - type: System.Collections.Generic.KeyNotFoundException + commentId: T:System.Collections.Generic.KeyNotFoundException + description: The property is retrieved and key is not found. + - type: System.NotSupportedException + commentId: T:System.NotSupportedException + description: The property is set and the is read-only. + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.Item(System.String) + nameWithType.vb: CompositeDictionary.this[](String) + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.this[](String) + name.vb: this[](String) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Count + commentId: P:DocFxToTemplate.Models.DocFx.CompositeDictionary.Count + id: Count + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: Count + nameWithType: CompositeDictionary.Count + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Count + type: Property + source: + id: Count + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 54 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Gets the number of elements contained in the . + example: [] + syntax: + content: public int Count { get; } + parameters: [] + return: + type: System.Int32 + description: The number of elements contained in the . + content.vb: Public ReadOnly Property Count As Integer + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Count* + implements: + - System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Count +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly + commentId: P:DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly + id: IsReadOnly + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: IsReadOnly + nameWithType: CompositeDictionary.IsReadOnly + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly + type: Property + source: + id: IsReadOnly + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 56 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Gets a value indicating whether the is read-only. + example: [] + syntax: + content: public bool IsReadOnly { get; } + parameters: [] + return: + type: System.Boolean + description: true if the is read-only; otherwise, false. + content.vb: Public ReadOnly Property IsReadOnly As Boolean + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly* + implements: + - System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.IsReadOnly +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys + commentId: P:DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys + id: Keys + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: Keys + nameWithType: CompositeDictionary.Keys + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys + type: Property + source: + id: Keys + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 58 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Gets an containing the keys of the . + example: [] + syntax: + content: public ICollection Keys { get; } + parameters: [] + return: + type: System.Collections.Generic.ICollection{System.String} + description: An containing the keys of the object that implements . + content.vb: Public ReadOnly Property Keys As ICollection(Of String) + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys* + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.Keys +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Values + commentId: P:DocFxToTemplate.Models.DocFx.CompositeDictionary.Values + id: Values + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: Values + nameWithType: CompositeDictionary.Values + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Values + type: Property + source: + id: Values + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 60 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Gets an containing the values in the . + example: [] + syntax: + content: public ICollection Values { get; } + parameters: [] + return: + type: System.Collections.Generic.ICollection{System.Object} + description: An containing the values in the object that implements . + content.vb: Public ReadOnly Property Values As ICollection(Of Object) + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Values* + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.Values +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Add(System.String,System.Object) + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.Add(System.String,System.Object) + id: Add(System.String,System.Object) + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: Add(string, object) + nameWithType: CompositeDictionary.Add(string, object) + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Add(string, object) + type: Method + source: + id: Add + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 67 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Adds an element with the provided key and value to the . + example: [] + syntax: + content: public void Add(string key, object value) + parameters: + - id: key + type: System.String + description: The object to use as the key of the element to add. + - id: value + type: System.Object + description: The object to use as the value of the element to add. + content.vb: Public Sub Add(key As String, value As Object) + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Add* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: key is null. + - type: System.ArgumentException + commentId: T:System.ArgumentException + description: An element with the same key already exists in the . + - type: System.NotSupportedException + commentId: T:System.NotSupportedException + description: The is read-only. + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.Add(System.String,System.Object) + nameWithType.vb: CompositeDictionary.Add(String, Object) + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.Add(String, Object) + name.vb: Add(String, Object) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear + id: Clear + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: Clear() + nameWithType: CompositeDictionary.Clear() + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear() + type: Method + source: + id: Clear + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 81 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Removes all items from the . + example: [] + syntax: + content: public void Clear() + content.vb: Public Sub Clear() + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear* + exceptions: + - type: System.NotSupportedException + commentId: T:System.NotSupportedException + description: The is read-only. + implements: + - System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Clear +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey(System.String) + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey(System.String) + id: ContainsKey(System.String) + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: ContainsKey(string) + nameWithType: CompositeDictionary.ContainsKey(string) + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey(string) + type: Method + source: + id: ContainsKey + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 91 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Determines whether the contains an element with the specified key. + example: [] + syntax: + content: public bool ContainsKey(string key) + parameters: + - id: key + type: System.String + description: The key to locate in the . + return: + type: System.Boolean + description: true if the contains an element with the key; otherwise, false. + content.vb: Public Function ContainsKey(key As String) As Boolean + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: key is null. + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.ContainsKey(System.String) + nameWithType.vb: CompositeDictionary.ContainsKey(String) + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey(String) + name.vb: ContainsKey(String) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator + id: GetEnumerator + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: GetEnumerator() + nameWithType: CompositeDictionary.GetEnumerator() + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator() + type: Method + source: + id: GetEnumerator + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 110 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Returns an enumerator that iterates through the collection. + example: [] + syntax: + content: public IEnumerator> GetEnumerator() + return: + type: System.Collections.Generic.IEnumerator{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + description: An enumerator that can be used to iterate through the collection. + content.vb: Public Function GetEnumerator() As IEnumerator(Of KeyValuePair(Of String, Object)) + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator* + implements: + - System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.GetEnumerator +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove(System.String) + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove(System.String) + id: Remove(System.String) + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: Remove(string) + nameWithType: CompositeDictionary.Remove(string) + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove(string) + type: Method + source: + id: Remove + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 123 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Removes the element with the specified key from the . + example: [] + syntax: + content: public bool Remove(string key) + parameters: + - id: key + type: System.String + description: The key of the element to remove. + return: + type: System.Boolean + description: true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original . + content.vb: Public Function Remove(key As String) As Boolean + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: key is null. + - type: System.NotSupportedException + commentId: T:System.NotSupportedException + description: The is read-only. + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.Remove(System.String) + nameWithType.vb: CompositeDictionary.Remove(String) + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove(String) + name.vb: Remove(String) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue(System.String,System.Object@) + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue(System.String,System.Object@) + id: TryGetValue(System.String,System.Object@) + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: TryGetValue(string, out object) + nameWithType: CompositeDictionary.TryGetValue(string, out object) + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue(string, out object) + type: Method + source: + id: TryGetValue + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 133 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Gets the value associated with the specified key. + example: [] + syntax: + content: public bool TryGetValue(string key, out object value) + parameters: + - id: key + type: System.String + description: The key whose value to get. + - id: value + type: System.Object + description: When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized. + return: + type: System.Boolean + description: true if the object that implements contains an element with the specified key; otherwise, false. + content.vb: Public Function TryGetValue(key As String, value As Object) As Boolean + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue* + exceptions: + - type: System.ArgumentNullException + commentId: T:System.ArgumentNullException + description: key is null. + implements: + - System.Collections.Generic.IDictionary{System.String,System.Object}.TryGetValue(System.String,System.Object@) + nameWithType.vb: CompositeDictionary.TryGetValue(String, Object) + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue(String, Object) + name.vb: TryGetValue(String, Object) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder + commentId: M:DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder + id: CreateBuilder + parent: DocFxToTemplate.Models.DocFx.CompositeDictionary + langs: + - csharp + - vb + name: CreateBuilder() + nameWithType: CompositeDictionary.CreateBuilder() + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder() + type: Method + source: + id: CreateBuilder + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs + startLine: 154 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static CompositeDictionary.Builder CreateBuilder() + return: + type: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + content.vb: Public Shared Function CreateBuilder() As CompositeDictionary.Builder + overload: DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder* +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Collections.Generic.IDictionary{System.String,System.Object} + commentId: T:System.Collections.Generic.IDictionary{System.String,System.Object} + parent: System.Collections.Generic + definition: System.Collections.Generic.IDictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + name: IDictionary + nameWithType: IDictionary + fullName: System.Collections.Generic.IDictionary + nameWithType.vb: IDictionary(Of String, Object) + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object) + name.vb: IDictionary(Of String, Object) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + commentId: T:System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + parent: System.Collections.Generic + definition: System.Collections.Generic.ICollection`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + name: ICollection> + nameWithType: ICollection> + fullName: System.Collections.Generic.ICollection> + nameWithType.vb: ICollection(Of KeyValuePair(Of String, Object)) + fullName.vb: System.Collections.Generic.ICollection(Of System.Collections.Generic.KeyValuePair(Of String, Object)) + name.vb: ICollection(Of KeyValuePair(Of String, Object)) + spec.csharp: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: < + - uid: System.Collections.Generic.KeyValuePair`2 + name: KeyValuePair + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: ( + - name: Of + - name: " " + - uid: System.Collections.Generic.KeyValuePair`2 + name: KeyValuePair + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + - name: ) +- uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + commentId: T:System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable> + nameWithType: IEnumerable> + fullName: System.Collections.Generic.IEnumerable> + nameWithType.vb: IEnumerable(Of KeyValuePair(Of String, Object)) + fullName.vb: System.Collections.Generic.IEnumerable(Of System.Collections.Generic.KeyValuePair(Of String, Object)) + name.vb: IEnumerable(Of KeyValuePair(Of String, Object)) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: System.Collections.Generic.KeyValuePair`2 + name: KeyValuePair + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: System.Collections.Generic.KeyValuePair`2 + name: KeyValuePair + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + - name: ) +- uid: System.Collections.IEnumerable + commentId: T:System.Collections.IEnumerable + parent: System.Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.IEnumerable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.Collections.Generic.IDictionary`2 + commentId: T:System.Collections.Generic.IDictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + name: IDictionary + nameWithType: IDictionary + fullName: System.Collections.Generic.IDictionary + nameWithType.vb: IDictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue) + name.vb: IDictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IDictionary`2 + name: IDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: System.Collections.Generic.ICollection`1 + commentId: T:System.Collections.Generic.ICollection`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + name: ICollection + nameWithType: ICollection + fullName: System.Collections.Generic.ICollection + nameWithType.vb: ICollection(Of T) + fullName.vb: System.Collections.Generic.ICollection(Of T) + name.vb: ICollection(Of T) + spec.csharp: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections + commentId: N:System.Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections + nameWithType: System.Collections + fullName: System.Collections + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.#ctor + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary__ctor + name: CompositeDictionary + nameWithType: CompositeDictionary.CompositeDictionary + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.CompositeDictionary + nameWithType.vb: CompositeDictionary.New + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.New + name.vb: New +- uid: System.ArgumentNullException + commentId: T:System.ArgumentNullException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception + name: ArgumentNullException + nameWithType: ArgumentNullException + fullName: System.ArgumentNullException +- uid: System.Collections.Generic.KeyNotFoundException + commentId: T:System.Collections.Generic.KeyNotFoundException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keynotfoundexception + name: KeyNotFoundException + nameWithType: KeyNotFoundException + fullName: System.Collections.Generic.KeyNotFoundException +- uid: System.NotSupportedException + commentId: T:System.NotSupportedException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.notsupportedexception + name: NotSupportedException + nameWithType: NotSupportedException + fullName: System.NotSupportedException +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Item* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Item + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Item_System_String_ + name: this + nameWithType: CompositeDictionary.this + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.this + nameWithType.vb: CompositeDictionary.this[] + fullName.vb: DocFxToTemplate.Models.DocFx.CompositeDictionary.this[] + name.vb: this[] +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Item(System.String) + commentId: P:System.Collections.Generic.IDictionary{System.String,System.Object}.Item(System.String) + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.Item(`0) + href: https://learn.microsoft.com/dotnet/api/system.string + name: this[string] + nameWithType: IDictionary.this[string] + fullName: System.Collections.Generic.IDictionary.this[string] + nameWithType.vb: IDictionary(Of String, Object).this[](String) + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).this[](String) + name.vb: this[](String) + spec.csharp: + - name: this + - name: '[' + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ']' + spec.vb: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Item(System.String) + name: this[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.item + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Collections.Generic.IDictionary`2.Item(`0) + commentId: P:System.Collections.Generic.IDictionary`2.Item(`0) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.item + name: this[TKey] + nameWithType: IDictionary.this[TKey] + fullName: System.Collections.Generic.IDictionary.this[TKey] + nameWithType.vb: IDictionary(Of TKey, TValue).this[](TKey) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).this[](TKey) + name.vb: this[](TKey) + spec.csharp: + - name: this + - name: '[' + - name: TKey + - name: ']' + spec.vb: + - uid: System.Collections.Generic.IDictionary`2.Item(`0) + name: this[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.item + - name: ( + - name: TKey + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Count* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Count + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Count + name: Count + nameWithType: CompositeDictionary.Count + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Count +- uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Count + commentId: P:System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Count + parent: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + definition: System.Collections.Generic.ICollection`1.Count + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.count + name: Count + nameWithType: ICollection>.Count + fullName: System.Collections.Generic.ICollection>.Count + nameWithType.vb: ICollection(Of KeyValuePair(Of String, Object)).Count + fullName.vb: System.Collections.Generic.ICollection(Of System.Collections.Generic.KeyValuePair(Of String, Object)).Count +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.Collections.Generic.ICollection`1.Count + commentId: P:System.Collections.Generic.ICollection`1.Count + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.count + name: Count + nameWithType: ICollection.Count + fullName: System.Collections.Generic.ICollection.Count + nameWithType.vb: ICollection(Of T).Count + fullName.vb: System.Collections.Generic.ICollection(Of T).Count +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_IsReadOnly + name: IsReadOnly + nameWithType: CompositeDictionary.IsReadOnly + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.IsReadOnly +- uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.IsReadOnly + commentId: P:System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.IsReadOnly + parent: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + definition: System.Collections.Generic.ICollection`1.IsReadOnly + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.isreadonly + name: IsReadOnly + nameWithType: ICollection>.IsReadOnly + fullName: System.Collections.Generic.ICollection>.IsReadOnly + nameWithType.vb: ICollection(Of KeyValuePair(Of String, Object)).IsReadOnly + fullName.vb: System.Collections.Generic.ICollection(Of System.Collections.Generic.KeyValuePair(Of String, Object)).IsReadOnly +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System.Collections.Generic.ICollection`1.IsReadOnly + commentId: P:System.Collections.Generic.ICollection`1.IsReadOnly + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.isreadonly + name: IsReadOnly + nameWithType: ICollection.IsReadOnly + fullName: System.Collections.Generic.ICollection.IsReadOnly + nameWithType.vb: ICollection(Of T).IsReadOnly + fullName.vb: System.Collections.Generic.ICollection(Of T).IsReadOnly +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Keys + name: Keys + nameWithType: CompositeDictionary.Keys + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Keys +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Keys + commentId: P:System.Collections.Generic.IDictionary{System.String,System.Object}.Keys + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.Keys + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.keys + name: Keys + nameWithType: IDictionary.Keys + fullName: System.Collections.Generic.IDictionary.Keys + nameWithType.vb: IDictionary(Of String, Object).Keys + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).Keys +- uid: System.Collections.Generic.ICollection{System.String} + commentId: T:System.Collections.Generic.ICollection{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.ICollection`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + name: ICollection + nameWithType: ICollection + fullName: System.Collections.Generic.ICollection + nameWithType.vb: ICollection(Of String) + fullName.vb: System.Collections.Generic.ICollection(Of String) + name.vb: ICollection(Of String) + spec.csharp: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.IDictionary`2.Keys + commentId: P:System.Collections.Generic.IDictionary`2.Keys + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.keys + name: Keys + nameWithType: IDictionary.Keys + fullName: System.Collections.Generic.IDictionary.Keys + nameWithType.vb: IDictionary(Of TKey, TValue).Keys + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).Keys +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Values* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Values + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Values + name: Values + nameWithType: CompositeDictionary.Values + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Values +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Values + commentId: P:System.Collections.Generic.IDictionary{System.String,System.Object}.Values + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.Values + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.values + name: Values + nameWithType: IDictionary.Values + fullName: System.Collections.Generic.IDictionary.Values + nameWithType.vb: IDictionary(Of String, Object).Values + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).Values +- uid: System.Collections.Generic.ICollection{System.Object} + commentId: T:System.Collections.Generic.ICollection{System.Object} + parent: System.Collections.Generic + definition: System.Collections.Generic.ICollection`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + name: ICollection + nameWithType: ICollection + fullName: System.Collections.Generic.ICollection + nameWithType.vb: ICollection(Of Object) + fullName.vb: System.Collections.Generic.ICollection(Of Object) + name.vb: ICollection(Of Object) + spec.csharp: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: < + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + spec.vb: + - uid: System.Collections.Generic.ICollection`1 + name: ICollection + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 + - name: ( + - name: Of + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.IDictionary`2.Values + commentId: P:System.Collections.Generic.IDictionary`2.Values + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.values + name: Values + nameWithType: IDictionary.Values + fullName: System.Collections.Generic.IDictionary.Values + nameWithType.vb: IDictionary(Of TKey, TValue).Values + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).Values +- uid: System.ArgumentException + commentId: T:System.ArgumentException + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.argumentexception + name: ArgumentException + nameWithType: ArgumentException + fullName: System.ArgumentException +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Add* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Add + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Add_System_String_System_Object_ + name: Add + nameWithType: CompositeDictionary.Add + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Add +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Add(System.String,System.Object) + commentId: M:System.Collections.Generic.IDictionary{System.String,System.Object}.Add(System.String,System.Object) + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.Add(`0,`1) + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.add + name: Add(string, object) + nameWithType: IDictionary.Add(string, object) + fullName: System.Collections.Generic.IDictionary.Add(string, object) + nameWithType.vb: IDictionary(Of String, Object).Add(String, Object) + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).Add(String, Object) + name.vb: Add(String, Object) + spec.csharp: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Add(System.String,System.Object) + name: Add + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.add + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Add(System.String,System.Object) + name: Add + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.add + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.IDictionary`2.Add(`0,`1) + commentId: M:System.Collections.Generic.IDictionary`2.Add(`0,`1) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.add + name: Add(TKey, TValue) + nameWithType: IDictionary.Add(TKey, TValue) + fullName: System.Collections.Generic.IDictionary.Add(TKey, TValue) + nameWithType.vb: IDictionary(Of TKey, TValue).Add(TKey, TValue) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).Add(TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2.Add(`0,`1) + name: Add + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.add + - name: ( + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary`2.Add(`0,`1) + name: Add + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.add + - name: ( + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Clear + name: Clear + nameWithType: CompositeDictionary.Clear + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Clear +- uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Clear + commentId: M:System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Clear + parent: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + definition: System.Collections.Generic.ICollection`1.Clear + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear + name: Clear() + nameWithType: ICollection>.Clear() + fullName: System.Collections.Generic.ICollection>.Clear() + nameWithType.vb: ICollection(Of KeyValuePair(Of String, Object)).Clear() + fullName.vb: System.Collections.Generic.ICollection(Of System.Collections.Generic.KeyValuePair(Of String, Object)).Clear() + spec.csharp: + - uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Clear + name: Clear + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear + - name: ( + - name: ) + spec.vb: + - uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.Clear + name: Clear + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear + - name: ( + - name: ) +- uid: System.Collections.Generic.ICollection`1.Clear + commentId: M:System.Collections.Generic.ICollection`1.Clear + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear + name: Clear() + nameWithType: ICollection.Clear() + fullName: System.Collections.Generic.ICollection.Clear() + nameWithType.vb: ICollection(Of T).Clear() + fullName.vb: System.Collections.Generic.ICollection(Of T).Clear() + spec.csharp: + - uid: System.Collections.Generic.ICollection`1.Clear + name: Clear + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear + - name: ( + - name: ) + spec.vb: + - uid: System.Collections.Generic.ICollection`1.Clear + name: Clear + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear + - name: ( + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_ContainsKey_System_String_ + name: ContainsKey + nameWithType: CompositeDictionary.ContainsKey + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.ContainsKey +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.ContainsKey(System.String) + commentId: M:System.Collections.Generic.IDictionary{System.String,System.Object}.ContainsKey(System.String) + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.ContainsKey(`0) + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.containskey + name: ContainsKey(string) + nameWithType: IDictionary.ContainsKey(string) + fullName: System.Collections.Generic.IDictionary.ContainsKey(string) + nameWithType.vb: IDictionary(Of String, Object).ContainsKey(String) + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).ContainsKey(String) + name.vb: ContainsKey(String) + spec.csharp: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.ContainsKey(System.String) + name: ContainsKey + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.containskey + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.ContainsKey(System.String) + name: ContainsKey + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.containskey + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.IDictionary`2.ContainsKey(`0) + commentId: M:System.Collections.Generic.IDictionary`2.ContainsKey(`0) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.containskey + name: ContainsKey(TKey) + nameWithType: IDictionary.ContainsKey(TKey) + fullName: System.Collections.Generic.IDictionary.ContainsKey(TKey) + nameWithType.vb: IDictionary(Of TKey, TValue).ContainsKey(TKey) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).ContainsKey(TKey) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2.ContainsKey(`0) + name: ContainsKey + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.containskey + - name: ( + - name: TKey + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary`2.ContainsKey(`0) + name: ContainsKey + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.containskey + - name: ( + - name: TKey + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_GetEnumerator + name: GetEnumerator + nameWithType: CompositeDictionary.GetEnumerator + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.GetEnumerator +- uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.GetEnumerator + commentId: M:System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.GetEnumerator + parent: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + definition: System.Collections.Generic.IEnumerable`1.GetEnumerator + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator + name: GetEnumerator() + nameWithType: IEnumerable>.GetEnumerator() + fullName: System.Collections.Generic.IEnumerable>.GetEnumerator() + nameWithType.vb: IEnumerable(Of KeyValuePair(Of String, Object)).GetEnumerator() + fullName.vb: System.Collections.Generic.IEnumerable(Of System.Collections.Generic.KeyValuePair(Of String, Object)).GetEnumerator() + spec.csharp: + - uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.GetEnumerator + name: GetEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator + - name: ( + - name: ) + spec.vb: + - uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}}.GetEnumerator + name: GetEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator + - name: ( + - name: ) +- uid: System.Collections.Generic.IEnumerator{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + commentId: T:System.Collections.Generic.IEnumerator{System.Collections.Generic.KeyValuePair{System.String,System.Object}} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerator`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 + name: IEnumerator> + nameWithType: IEnumerator> + fullName: System.Collections.Generic.IEnumerator> + nameWithType.vb: IEnumerator(Of KeyValuePair(Of String, Object)) + fullName.vb: System.Collections.Generic.IEnumerator(Of System.Collections.Generic.KeyValuePair(Of String, Object)) + name.vb: IEnumerator(Of KeyValuePair(Of String, Object)) + spec.csharp: + - uid: System.Collections.Generic.IEnumerator`1 + name: IEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 + - name: < + - uid: System.Collections.Generic.KeyValuePair`2 + name: KeyValuePair + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerator`1 + name: IEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 + - name: ( + - name: Of + - name: " " + - uid: System.Collections.Generic.KeyValuePair`2 + name: KeyValuePair + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + - name: ) +- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator + commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator + name: GetEnumerator() + nameWithType: IEnumerable.GetEnumerator() + fullName: System.Collections.Generic.IEnumerable.GetEnumerator() + nameWithType.vb: IEnumerable(Of T).GetEnumerator() + fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator + name: GetEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator + - name: ( + - name: ) + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator + name: GetEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator + - name: ( + - name: ) +- uid: System.Collections.Generic.IEnumerator`1 + commentId: T:System.Collections.Generic.IEnumerator`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 + name: IEnumerator + nameWithType: IEnumerator + fullName: System.Collections.Generic.IEnumerator + nameWithType.vb: IEnumerator(Of T) + fullName.vb: System.Collections.Generic.IEnumerator(Of T) + name.vb: IEnumerator(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerator`1 + name: IEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerator`1 + name: IEnumerator + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_Remove_System_String_ + name: Remove + nameWithType: CompositeDictionary.Remove + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Remove +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Remove(System.String) + commentId: M:System.Collections.Generic.IDictionary{System.String,System.Object}.Remove(System.String) + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.Remove(`0) + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.remove + name: Remove(string) + nameWithType: IDictionary.Remove(string) + fullName: System.Collections.Generic.IDictionary.Remove(string) + nameWithType.vb: IDictionary(Of String, Object).Remove(String) + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).Remove(String) + name.vb: Remove(String) + spec.csharp: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Remove(System.String) + name: Remove + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.remove + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.Remove(System.String) + name: Remove + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.remove + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.IDictionary`2.Remove(`0) + commentId: M:System.Collections.Generic.IDictionary`2.Remove(`0) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.remove + name: Remove(TKey) + nameWithType: IDictionary.Remove(TKey) + fullName: System.Collections.Generic.IDictionary.Remove(TKey) + nameWithType.vb: IDictionary(Of TKey, TValue).Remove(TKey) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).Remove(TKey) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2.Remove(`0) + name: Remove + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.remove + - name: ( + - name: TKey + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary`2.Remove(`0) + name: Remove + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.remove + - name: ( + - name: TKey + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_TryGetValue_System_String_System_Object__ + name: TryGetValue + nameWithType: CompositeDictionary.TryGetValue + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.TryGetValue +- uid: System.Collections.Generic.IDictionary{System.String,System.Object}.TryGetValue(System.String,System.Object@) + commentId: M:System.Collections.Generic.IDictionary{System.String,System.Object}.TryGetValue(System.String,System.Object@) + parent: System.Collections.Generic.IDictionary{System.String,System.Object} + definition: System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.trygetvalue + name: TryGetValue(string, out object) + nameWithType: IDictionary.TryGetValue(string, out object) + fullName: System.Collections.Generic.IDictionary.TryGetValue(string, out object) + nameWithType.vb: IDictionary(Of String, Object).TryGetValue(String, Object) + fullName.vb: System.Collections.Generic.IDictionary(Of String, Object).TryGetValue(String, Object) + name.vb: TryGetValue(String, Object) + spec.csharp: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.TryGetValue(System.String,System.Object@) + name: TryGetValue + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.trygetvalue + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary{System.String,System.Object}.TryGetValue(System.String,System.Object@) + name: TryGetValue + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.trygetvalue + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) + commentId: M:System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.trygetvalue + name: TryGetValue(TKey, out TValue) + nameWithType: IDictionary.TryGetValue(TKey, out TValue) + fullName: System.Collections.Generic.IDictionary.TryGetValue(TKey, out TValue) + nameWithType.vb: IDictionary(Of TKey, TValue).TryGetValue(TKey, TValue) + fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue).TryGetValue(TKey, TValue) + name.vb: TryGetValue(TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) + name: TryGetValue + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.trygetvalue + - name: ( + - name: TKey + - name: ',' + - name: " " + - name: out + - name: " " + - name: TValue + - name: ) + spec.vb: + - uid: System.Collections.Generic.IDictionary`2.TryGetValue(`0,`1@) + name: TryGetValue + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2.trygetvalue + - name: ( + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder* + commentId: Overload:DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html#DocFxToTemplate_Models_DocFx_CompositeDictionary_CreateBuilder + name: CreateBuilder + nameWithType: CompositeDictionary.CreateBuilder + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.CreateBuilder +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + name: CompositeDictionary.Builder + nameWithType: CompositeDictionary.Builder + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: Builder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: Builder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.DevLang.yml b/api/DocFxToTemplate.Models.DocFx.Constants.DevLang.yml new file mode 100644 index 0000000..cda3d42 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.DevLang.yml @@ -0,0 +1,361 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.DevLang + commentId: T:DocFxToTemplate.Models.DocFx.Constants.DevLang + id: Constants.DevLang + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.DevLang.CSharp + - DocFxToTemplate.Models.DocFx.Constants.DevLang.VB + langs: + - csharp + - vb + name: Constants.DevLang + nameWithType: Constants.DevLang + fullName: DocFxToTemplate.Models.DocFx.Constants.DevLang + type: Class + source: + id: DevLang + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 102 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.DevLang + content.vb: Public Module Constants.DevLang + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.DevLang.CSharp + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DevLang.CSharp + id: CSharp + parent: DocFxToTemplate.Models.DocFx.Constants.DevLang + langs: + - csharp + - vb + name: CSharp + nameWithType: Constants.DevLang.CSharp + fullName: DocFxToTemplate.Models.DocFx.Constants.DevLang.CSharp + type: Field + source: + id: CSharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 104 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string CSharp = "csharp" + return: + type: System.String + content.vb: Public Const CSharp As String = "csharp" +- uid: DocFxToTemplate.Models.DocFx.Constants.DevLang.VB + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DevLang.VB + id: VB + parent: DocFxToTemplate.Models.DocFx.Constants.DevLang + langs: + - csharp + - vb + name: VB + nameWithType: Constants.DevLang.VB + fullName: DocFxToTemplate.Models.DocFx.Constants.DevLang.VB + type: Field + source: + id: VB + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 105 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string VB = "vb" + return: + type: System.String + content.vb: Public Const VB As String = "vb" +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml b/api/DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml new file mode 100644 index 0000000..6bbe383 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.DocumentType.yml @@ -0,0 +1,433 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType + commentId: T:DocFxToTemplate.Models.DocFx.Constants.DocumentType + id: Constants.DocumentType + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.DocumentType.Conceptual + - DocFxToTemplate.Models.DocFx.Constants.DocumentType.ManagedReference + - DocFxToTemplate.Models.DocFx.Constants.DocumentType.Redirection + - DocFxToTemplate.Models.DocFx.Constants.DocumentType.Resource + - DocFxToTemplate.Models.DocFx.Constants.DocumentType.Toc + langs: + - csharp + - vb + name: Constants.DocumentType + nameWithType: Constants.DocumentType + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType + type: Class + source: + id: DocumentType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.DocumentType + content.vb: Public Module Constants.DocumentType + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Conceptual + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DocumentType.Conceptual + id: Conceptual + parent: DocFxToTemplate.Models.DocFx.Constants.DocumentType + langs: + - csharp + - vb + name: Conceptual + nameWithType: Constants.DocumentType.Conceptual + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Conceptual + type: Field + source: + id: Conceptual + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 17 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Conceptual = "Conceptual" + return: + type: System.String + content.vb: Public Const Conceptual As String = "Conceptual" +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Toc + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DocumentType.Toc + id: Toc + parent: DocFxToTemplate.Models.DocFx.Constants.DocumentType + langs: + - csharp + - vb + name: Toc + nameWithType: Constants.DocumentType.Toc + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Toc + type: Field + source: + id: Toc + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 18 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Toc = "Toc" + return: + type: System.String + content.vb: Public Const Toc As String = "Toc" +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType.ManagedReference + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DocumentType.ManagedReference + id: ManagedReference + parent: DocFxToTemplate.Models.DocFx.Constants.DocumentType + langs: + - csharp + - vb + name: ManagedReference + nameWithType: Constants.DocumentType.ManagedReference + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType.ManagedReference + type: Field + source: + id: ManagedReference + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 19 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string ManagedReference = "ManagedReference" + return: + type: System.String + content.vb: Public Const ManagedReference As String = "ManagedReference" +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Resource + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DocumentType.Resource + id: Resource + parent: DocFxToTemplate.Models.DocFx.Constants.DocumentType + langs: + - csharp + - vb + name: Resource + nameWithType: Constants.DocumentType.Resource + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Resource + type: Field + source: + id: Resource + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Resource = "Resource" + return: + type: System.String + content.vb: Public Const Resource As String = "Resource" +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Redirection + commentId: F:DocFxToTemplate.Models.DocFx.Constants.DocumentType.Redirection + id: Redirection + parent: DocFxToTemplate.Models.DocFx.Constants.DocumentType + langs: + - csharp + - vb + name: Redirection + nameWithType: Constants.DocumentType.Redirection + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType.Redirection + type: Field + source: + id: Redirection + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Redirection = "Redirection" + return: + type: System.String + content.vb: Public Const Redirection As String = "Redirection" +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml b/api/DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml new file mode 100644 index 0000000..5170a92 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.yml @@ -0,0 +1,492 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + commentId: T:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + id: Constants.EnvironmentVariables + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_KEEP_DEBUG_INFO + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_SOURCE_BRANCH_NAME + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName + langs: + - csharp + - vb + name: Constants.EnvironmentVariables + nameWithType: Constants.EnvironmentVariables + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + type: Class + source: + id: EnvironmentVariables + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 114 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.EnvironmentVariables + content.vb: Public Module Constants.EnvironmentVariables + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_KEEP_DEBUG_INFO + commentId: F:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_KEEP_DEBUG_INFO + id: DOCFX_KEEP_DEBUG_INFO + parent: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + langs: + - csharp + - vb + name: DOCFX_KEEP_DEBUG_INFO + nameWithType: Constants.EnvironmentVariables.DOCFX_KEEP_DEBUG_INFO + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_KEEP_DEBUG_INFO + type: Field + source: + id: DOCFX_KEEP_DEBUG_INFO + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 130 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DOCFX_KEEP_DEBUG_INFO = "DOCFX_KEEP_DEBUG_INFO" + return: + type: System.String + content.vb: Public Const DOCFX_KEEP_DEBUG_INFO As String = "DOCFX_KEEP_DEBUG_INFO" +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + commentId: F:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + id: DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + parent: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + langs: + - csharp + - vb + name: DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + nameWithType: Constants.EnvironmentVariables.DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + type: Field + source: + id: DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 132 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST = "DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST" + return: + type: System.String + content.vb: Public Const DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST As String = "DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST" +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_SOURCE_BRANCH_NAME + commentId: F:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_SOURCE_BRANCH_NAME + id: DOCFX_SOURCE_BRANCH_NAME + parent: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + langs: + - csharp + - vb + name: DOCFX_SOURCE_BRANCH_NAME + nameWithType: Constants.EnvironmentVariables.DOCFX_SOURCE_BRANCH_NAME + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.DOCFX_SOURCE_BRANCH_NAME + type: Field + source: + id: DOCFX_SOURCE_BRANCH_NAME + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 135 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DOCFX_SOURCE_BRANCH_NAME = "DOCFX_SOURCE_BRANCH_NAME" + return: + type: System.String + content.vb: Public Const DOCFX_SOURCE_BRANCH_NAME As String = "DOCFX_SOURCE_BRANCH_NAME" +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo + commentId: P:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo + id: KeepDebugInfo + parent: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + langs: + - csharp + - vb + name: KeepDebugInfo + nameWithType: Constants.EnvironmentVariables.KeepDebugInfo + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo + type: Property + source: + id: KeepDebugInfo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 139 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static string? KeepDebugInfo { get; } + parameters: [] + return: + type: System.String + content.vb: Public Shared ReadOnly Property KeepDebugInfo As String + overload: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo* +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList + commentId: P:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList + id: NoCheckCertificateRevocationList + parent: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + langs: + - csharp + - vb + name: NoCheckCertificateRevocationList + nameWithType: Constants.EnvironmentVariables.NoCheckCertificateRevocationList + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList + type: Property + source: + id: NoCheckCertificateRevocationList + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 141 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static bool NoCheckCertificateRevocationList { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Shared ReadOnly Property NoCheckCertificateRevocationList As Boolean + overload: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList* +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName + commentId: P:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName + id: SourceBranchName + parent: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + langs: + - csharp + - vb + name: SourceBranchName + nameWithType: Constants.EnvironmentVariables.SourceBranchName + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName + type: Property + source: + id: SourceBranchName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 144 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static string? SourceBranchName { get; } + parameters: [] + return: + type: System.String + content.vb: Public Shared ReadOnly Property SourceBranchName As String + overload: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName* +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo* + commentId: Overload:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo + href: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.html#DocFxToTemplate_Models_DocFx_Constants_EnvironmentVariables_KeepDebugInfo + name: KeepDebugInfo + nameWithType: Constants.EnvironmentVariables.KeepDebugInfo + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.KeepDebugInfo +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList* + commentId: Overload:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList + href: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.html#DocFxToTemplate_Models_DocFx_Constants_EnvironmentVariables_NoCheckCertificateRevocationList + name: NoCheckCertificateRevocationList + nameWithType: Constants.EnvironmentVariables.NoCheckCertificateRevocationList + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.NoCheckCertificateRevocationList +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName* + commentId: Overload:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName + href: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.html#DocFxToTemplate_Models_DocFx_Constants_EnvironmentVariables_SourceBranchName + name: SourceBranchName + nameWithType: Constants.EnvironmentVariables.SourceBranchName + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.SourceBranchName diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml b/api/DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml new file mode 100644 index 0000000..79991de --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.yml @@ -0,0 +1,793 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + commentId: T:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + id: Constants.ExtensionMemberPrefix + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Assemblies + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Children + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Content + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.DerivedClasses + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Exceptions + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.ExtensionMethods + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.FullName + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Implements + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Inheritance + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.InheritedMembers + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Name + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.NameWithType + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Namespace + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overload + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overridden + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Parent + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Platform + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Return + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Source + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Spec + langs: + - csharp + - vb + name: Constants.ExtensionMemberPrefix + nameWithType: Constants.ExtensionMemberPrefix + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + type: Class + source: + id: ExtensionMemberPrefix + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 78 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.ExtensionMemberPrefix + content.vb: Public Module Constants.ExtensionMemberPrefix + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.NameWithType + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.NameWithType + id: NameWithType + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: NameWithType + nameWithType: Constants.ExtensionMemberPrefix.NameWithType + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.NameWithType + type: Field + source: + id: NameWithType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 80 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string NameWithType = "nameWithType." + return: + type: System.String + content.vb: Public Const NameWithType As String = "nameWithType." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.FullName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.FullName + id: FullName + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: FullName + nameWithType: Constants.ExtensionMemberPrefix.FullName + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.FullName + type: Field + source: + id: FullName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 81 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string FullName = "fullName." + return: + type: System.String + content.vb: Public Const FullName As String = "fullName." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Name + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Name + nameWithType: Constants.ExtensionMemberPrefix.Name + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Name + type: Field + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 82 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Name = "name." + return: + type: System.String + content.vb: Public Const Name As String = "name." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Spec + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Spec + id: Spec + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Spec + nameWithType: Constants.ExtensionMemberPrefix.Spec + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Spec + type: Field + source: + id: Spec + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 83 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Spec = "spec." + return: + type: System.String + content.vb: Public Const Spec As String = "spec." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Content + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Content + id: Content + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Content + nameWithType: Constants.ExtensionMemberPrefix.Content + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Content + type: Field + source: + id: Content + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 84 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Content = "content." + return: + type: System.String + content.vb: Public Const Content As String = "content." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Parent + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Parent + id: Parent + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Parent + nameWithType: Constants.ExtensionMemberPrefix.Parent + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Parent + type: Field + source: + id: Parent + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 85 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Parent = "parent." + return: + type: System.String + content.vb: Public Const Parent As String = "parent." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Children + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Children + id: Children + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Children + nameWithType: Constants.ExtensionMemberPrefix.Children + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Children + type: Field + source: + id: Children + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 86 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Children = "children." + return: + type: System.String + content.vb: Public Const Children As String = "children." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Source + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Source + id: Source + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Source + nameWithType: Constants.ExtensionMemberPrefix.Source + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Source + type: Field + source: + id: Source + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 87 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Source = "source." + return: + type: System.String + content.vb: Public Const Source As String = "source." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Namespace + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Namespace + id: Namespace + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Namespace + nameWithType: Constants.ExtensionMemberPrefix.Namespace + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Namespace + type: Field + source: + id: Namespace + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 88 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Namespace = "namespace." + return: + type: System.String + content.vb: Public Const Namespace As String = "namespace." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Assemblies + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Assemblies + id: Assemblies + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Assemblies + nameWithType: Constants.ExtensionMemberPrefix.Assemblies + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Assemblies + type: Field + source: + id: Assemblies + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 89 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Assemblies = "assemblies." + return: + type: System.String + content.vb: Public Const Assemblies As String = "assemblies." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overridden + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overridden + id: Overridden + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Overridden + nameWithType: Constants.ExtensionMemberPrefix.Overridden + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overridden + type: Field + source: + id: Overridden + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 90 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Overridden = "overridden." + return: + type: System.String + content.vb: Public Const Overridden As String = "overridden." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Exceptions + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Exceptions + id: Exceptions + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Exceptions + nameWithType: Constants.ExtensionMemberPrefix.Exceptions + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Exceptions + type: Field + source: + id: Exceptions + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 91 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Exceptions = "exceptions." + return: + type: System.String + content.vb: Public Const Exceptions As String = "exceptions." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Inheritance + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Inheritance + id: Inheritance + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Inheritance + nameWithType: Constants.ExtensionMemberPrefix.Inheritance + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Inheritance + type: Field + source: + id: Inheritance + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 92 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Inheritance = "inheritance." + return: + type: System.String + content.vb: Public Const Inheritance As String = "inheritance." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.DerivedClasses + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.DerivedClasses + id: DerivedClasses + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: DerivedClasses + nameWithType: Constants.ExtensionMemberPrefix.DerivedClasses + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.DerivedClasses + type: Field + source: + id: DerivedClasses + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 93 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DerivedClasses = "derivedClasses." + return: + type: System.String + content.vb: Public Const DerivedClasses As String = "derivedClasses." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Implements + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Implements + id: Implements + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Implements + nameWithType: Constants.ExtensionMemberPrefix.Implements + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Implements + type: Field + source: + id: Implements + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 94 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Implements = "implements." + return: + type: System.String + content.vb: Public Const Implements As String = "implements." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.InheritedMembers + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.InheritedMembers + id: InheritedMembers + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: InheritedMembers + nameWithType: Constants.ExtensionMemberPrefix.InheritedMembers + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.InheritedMembers + type: Field + source: + id: InheritedMembers + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 95 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string InheritedMembers = "inheritedMembers." + return: + type: System.String + content.vb: Public Const InheritedMembers As String = "inheritedMembers." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.ExtensionMethods + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.ExtensionMethods + id: ExtensionMethods + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: ExtensionMethods + nameWithType: Constants.ExtensionMemberPrefix.ExtensionMethods + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.ExtensionMethods + type: Field + source: + id: ExtensionMethods + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 96 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string ExtensionMethods = "extensionMethods." + return: + type: System.String + content.vb: Public Const ExtensionMethods As String = "extensionMethods." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Platform + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Platform + id: Platform + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Platform + nameWithType: Constants.ExtensionMemberPrefix.Platform + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Platform + type: Field + source: + id: Platform + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 97 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Platform = "platform." + return: + type: System.String + content.vb: Public Const Platform As String = "platform." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Return + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Return + id: Return + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Return + nameWithType: Constants.ExtensionMemberPrefix.Return + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Return + type: Field + source: + id: Return + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 98 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Return = "return." + return: + type: System.String + content.vb: Public Const Return As String = "return." +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overload + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overload + id: Overload + parent: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + langs: + - csharp + - vb + name: Overload + nameWithType: Constants.ExtensionMemberPrefix.Overload + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.Overload + type: Field + source: + id: Overload + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 99 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Overload = "overload." + return: + type: System.String + content.vb: Public Const Overload As String = "overload." +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.MetadataName.yml b/api/DocFxToTemplate.Models.DocFx.Constants.MetadataName.yml new file mode 100644 index 0000000..dec00ae --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.MetadataName.yml @@ -0,0 +1,337 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.MetadataName + commentId: T:DocFxToTemplate.Models.DocFx.Constants.MetadataName + id: Constants.MetadataName + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.MetadataName.Version + langs: + - csharp + - vb + name: Constants.MetadataName + nameWithType: Constants.MetadataName + fullName: DocFxToTemplate.Models.DocFx.Constants.MetadataName + type: Class + source: + id: MetadataName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 73 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.MetadataName + content.vb: Public Module Constants.MetadataName + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.MetadataName.Version + commentId: F:DocFxToTemplate.Models.DocFx.Constants.MetadataName.Version + id: Version + parent: DocFxToTemplate.Models.DocFx.Constants.MetadataName + langs: + - csharp + - vb + name: Version + nameWithType: Constants.MetadataName.Version + fullName: DocFxToTemplate.Models.DocFx.Constants.MetadataName.Version + type: Field + source: + id: Version + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 75 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Version = "version" + return: + type: System.String + content.vb: Public Const Version As String = "version" +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml b/api/DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml new file mode 100644 index 0000000..fc56f90 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.PropertyName.yml @@ -0,0 +1,1321 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName + commentId: T:DocFxToTemplate.Models.DocFx.Constants.PropertyName + id: Constants.PropertyName + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.AdditionalNotes + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Assemblies + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Children + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.CommentId + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Conceptual + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Content + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.DerivedClasses + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.DisplayName + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.DocumentType + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Documentation + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Exceptions + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.ExtensionMethods + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.FullName + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Href + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Id + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Implements + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Inheritance + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.InheritedMembers + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.IsEii + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Name + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.NameWithType + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Namespace + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.OutputFileName + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overload + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overridden + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Parent + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Path + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Platform + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.RedirectUrl + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Return + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.SeeAlsoContent + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Source + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Summary + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Syntax + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.SystemKeys + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Title + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.TitleOverwriteH1 + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.TocHref + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicHref + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicUid + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Type + - DocFxToTemplate.Models.DocFx.Constants.PropertyName.Uid + langs: + - csharp + - vb + name: Constants.PropertyName + nameWithType: Constants.PropertyName + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName + type: Class + source: + id: PropertyName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 24 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.PropertyName + content.vb: Public Module Constants.PropertyName + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Uid + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Uid + id: Uid + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Uid + nameWithType: Constants.PropertyName.Uid + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Uid + type: Field + source: + id: Uid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 26 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Uid = "uid" + return: + type: System.String + content.vb: Public Const Uid As String = "uid" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.CommentId + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.CommentId + id: CommentId + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: CommentId + nameWithType: Constants.PropertyName.CommentId + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.CommentId + type: Field + source: + id: CommentId + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 27 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string CommentId = "commentId" + return: + type: System.String + content.vb: Public Const CommentId As String = "commentId" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Id + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Id + id: Id + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Id + nameWithType: Constants.PropertyName.Id + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Id + type: Field + source: + id: Id + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 28 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Id = "id" + return: + type: System.String + content.vb: Public Const Id As String = "id" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Href + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Href + id: Href + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Href + nameWithType: Constants.PropertyName.Href + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Href + type: Field + source: + id: Href + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 29 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Href = "href" + return: + type: System.String + content.vb: Public Const Href As String = "href" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Type + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Type + nameWithType: Constants.PropertyName.Type + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Type + type: Field + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 30 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Type = "type" + return: + type: System.String + content.vb: Public Const Type As String = "type" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Source + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Source + id: Source + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Source + nameWithType: Constants.PropertyName.Source + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Source + type: Field + source: + id: Source + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 31 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Source = "source" + return: + type: System.String + content.vb: Public Const Source As String = "source" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Path + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Path + id: Path + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Path + nameWithType: Constants.PropertyName.Path + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Path + type: Field + source: + id: Path + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 32 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Path = "path" + return: + type: System.String + content.vb: Public Const Path As String = "path" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.DocumentType + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.DocumentType + id: DocumentType + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: DocumentType + nameWithType: Constants.PropertyName.DocumentType + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.DocumentType + type: Field + source: + id: DocumentType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 33 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DocumentType = "documentType" + return: + type: System.String + content.vb: Public Const DocumentType As String = "documentType" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Title + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Title + id: Title + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Title + nameWithType: Constants.PropertyName.Title + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Title + type: Field + source: + id: Title + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 34 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Title = "title" + return: + type: System.String + content.vb: Public Const Title As String = "title" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TitleOverwriteH1 + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.TitleOverwriteH1 + id: TitleOverwriteH1 + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: TitleOverwriteH1 + nameWithType: Constants.PropertyName.TitleOverwriteH1 + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TitleOverwriteH1 + type: Field + source: + id: TitleOverwriteH1 + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 35 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string TitleOverwriteH1 = "titleOverwriteH1" + return: + type: System.String + content.vb: Public Const TitleOverwriteH1 As String = "titleOverwriteH1" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Conceptual + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Conceptual + id: Conceptual + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Conceptual + nameWithType: Constants.PropertyName.Conceptual + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Conceptual + type: Field + source: + id: Conceptual + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 36 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Conceptual = "conceptual" + return: + type: System.String + content.vb: Public Const Conceptual As String = "conceptual" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Documentation + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Documentation + id: Documentation + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Documentation + nameWithType: Constants.PropertyName.Documentation + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Documentation + type: Field + source: + id: Documentation + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 37 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Documentation = "documentation" + return: + type: System.String + content.vb: Public Const Documentation As String = "documentation" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Summary + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Summary + id: Summary + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Summary + nameWithType: Constants.PropertyName.Summary + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Summary + type: Field + source: + id: Summary + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 38 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Summary = "summary" + return: + type: System.String + content.vb: Public Const Summary As String = "summary" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.IsEii + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.IsEii + id: IsEii + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: IsEii + nameWithType: Constants.PropertyName.IsEii + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.IsEii + type: Field + source: + id: IsEii + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 39 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string IsEii = "isEii" + return: + type: System.String + content.vb: Public Const IsEii As String = "isEii" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Name + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Name + nameWithType: Constants.PropertyName.Name + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Name + type: Field + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 41 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Name = "name" + return: + type: System.String + content.vb: Public Const Name As String = "name" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.DisplayName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.DisplayName + id: DisplayName + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: DisplayName + nameWithType: Constants.PropertyName.DisplayName + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.DisplayName + type: Field + source: + id: DisplayName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 42 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DisplayName = "displayName" + return: + type: System.String + content.vb: Public Const DisplayName As String = "displayName" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.NameWithType + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.NameWithType + id: NameWithType + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: NameWithType + nameWithType: Constants.PropertyName.NameWithType + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.NameWithType + type: Field + source: + id: NameWithType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 43 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string NameWithType = "nameWithType" + return: + type: System.String + content.vb: Public Const NameWithType As String = "nameWithType" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.FullName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.FullName + id: FullName + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: FullName + nameWithType: Constants.PropertyName.FullName + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.FullName + type: Field + source: + id: FullName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 44 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string FullName = "fullName" + return: + type: System.String + content.vb: Public Const FullName As String = "fullName" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Content + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Content + id: Content + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Content + nameWithType: Constants.PropertyName.Content + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Content + type: Field + source: + id: Content + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 45 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Content = "content" + return: + type: System.String + content.vb: Public Const Content As String = "content" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TocHref + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.TocHref + id: TocHref + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: TocHref + nameWithType: Constants.PropertyName.TocHref + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TocHref + type: Field + source: + id: TocHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 46 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string TocHref = "tocHref" + return: + type: System.String + content.vb: Public Const TocHref As String = "tocHref" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicHref + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicHref + id: TopicHref + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: TopicHref + nameWithType: Constants.PropertyName.TopicHref + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicHref + type: Field + source: + id: TopicHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 47 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string TopicHref = "topicHref" + return: + type: System.String + content.vb: Public Const TopicHref As String = "topicHref" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicUid + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicUid + id: TopicUid + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: TopicUid + nameWithType: Constants.PropertyName.TopicUid + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.TopicUid + type: Field + source: + id: TopicUid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 48 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string TopicUid = "topicUid" + return: + type: System.String + content.vb: Public Const TopicUid As String = "topicUid" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Platform + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Platform + id: Platform + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Platform + nameWithType: Constants.PropertyName.Platform + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Platform + type: Field + source: + id: Platform + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 49 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Platform = "platform" + return: + type: System.String + content.vb: Public Const Platform As String = "platform" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Parent + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Parent + id: Parent + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Parent + nameWithType: Constants.PropertyName.Parent + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Parent + type: Field + source: + id: Parent + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 50 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Parent = "parent" + return: + type: System.String + content.vb: Public Const Parent As String = "parent" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Children + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Children + id: Children + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Children + nameWithType: Constants.PropertyName.Children + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Children + type: Field + source: + id: Children + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 51 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Children = "children" + return: + type: System.String + content.vb: Public Const Children As String = "children" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Namespace + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Namespace + id: Namespace + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Namespace + nameWithType: Constants.PropertyName.Namespace + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Namespace + type: Field + source: + id: Namespace + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 52 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Namespace = "namespace" + return: + type: System.String + content.vb: Public Const Namespace As String = "namespace" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Assemblies + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Assemblies + id: Assemblies + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Assemblies + nameWithType: Constants.PropertyName.Assemblies + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Assemblies + type: Field + source: + id: Assemblies + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 53 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Assemblies = "assemblies" + return: + type: System.String + content.vb: Public Const Assemblies As String = "assemblies" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overridden + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overridden + id: Overridden + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Overridden + nameWithType: Constants.PropertyName.Overridden + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overridden + type: Field + source: + id: Overridden + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 54 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Overridden = "overridden" + return: + type: System.String + content.vb: Public Const Overridden As String = "overridden" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Exceptions + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Exceptions + id: Exceptions + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Exceptions + nameWithType: Constants.PropertyName.Exceptions + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Exceptions + type: Field + source: + id: Exceptions + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 55 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Exceptions = "exceptions" + return: + type: System.String + content.vb: Public Const Exceptions As String = "exceptions" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Inheritance + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Inheritance + id: Inheritance + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Inheritance + nameWithType: Constants.PropertyName.Inheritance + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Inheritance + type: Field + source: + id: Inheritance + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 56 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Inheritance = "inheritance" + return: + type: System.String + content.vb: Public Const Inheritance As String = "inheritance" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.DerivedClasses + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.DerivedClasses + id: DerivedClasses + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: DerivedClasses + nameWithType: Constants.PropertyName.DerivedClasses + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.DerivedClasses + type: Field + source: + id: DerivedClasses + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 57 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DerivedClasses = "derivedClasses" + return: + type: System.String + content.vb: Public Const DerivedClasses As String = "derivedClasses" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Implements + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Implements + id: Implements + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Implements + nameWithType: Constants.PropertyName.Implements + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Implements + type: Field + source: + id: Implements + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 58 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Implements = "implements" + return: + type: System.String + content.vb: Public Const Implements As String = "implements" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.InheritedMembers + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.InheritedMembers + id: InheritedMembers + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: InheritedMembers + nameWithType: Constants.PropertyName.InheritedMembers + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.InheritedMembers + type: Field + source: + id: InheritedMembers + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 59 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string InheritedMembers = "inheritedMembers" + return: + type: System.String + content.vb: Public Const InheritedMembers As String = "inheritedMembers" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.ExtensionMethods + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.ExtensionMethods + id: ExtensionMethods + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: ExtensionMethods + nameWithType: Constants.PropertyName.ExtensionMethods + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.ExtensionMethods + type: Field + source: + id: ExtensionMethods + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 60 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string ExtensionMethods = "extensionMethods" + return: + type: System.String + content.vb: Public Const ExtensionMethods As String = "extensionMethods" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overload + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overload + id: Overload + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Overload + nameWithType: Constants.PropertyName.Overload + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Overload + type: Field + source: + id: Overload + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 61 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Overload = "overload" + return: + type: System.String + content.vb: Public Const Overload As String = "overload" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Return + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Return + id: Return + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Return + nameWithType: Constants.PropertyName.Return + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Return + type: Field + source: + id: Return + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 62 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Return = "return" + return: + type: System.String + content.vb: Public Const Return As String = "return" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.SeeAlsoContent + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.SeeAlsoContent + id: SeeAlsoContent + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: SeeAlsoContent + nameWithType: Constants.PropertyName.SeeAlsoContent + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.SeeAlsoContent + type: Field + source: + id: SeeAlsoContent + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 63 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string SeeAlsoContent = "seealsoContent" + return: + type: System.String + content.vb: Public Const SeeAlsoContent As String = "seealsoContent" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Syntax + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.Syntax + id: Syntax + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: Syntax + nameWithType: Constants.PropertyName.Syntax + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.Syntax + type: Field + source: + id: Syntax + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 64 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string Syntax = "syntax" + return: + type: System.String + content.vb: Public Const Syntax As String = "syntax" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.AdditionalNotes + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.AdditionalNotes + id: AdditionalNotes + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: AdditionalNotes + nameWithType: Constants.PropertyName.AdditionalNotes + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.AdditionalNotes + type: Field + source: + id: AdditionalNotes + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 65 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string AdditionalNotes = "additionalNotes" + return: + type: System.String + content.vb: Public Const AdditionalNotes As String = "additionalNotes" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.SystemKeys + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.SystemKeys + id: SystemKeys + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: SystemKeys + nameWithType: Constants.PropertyName.SystemKeys + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.SystemKeys + type: Field + source: + id: SystemKeys + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 66 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string SystemKeys = "_systemKeys" + return: + type: System.String + content.vb: Public Const SystemKeys As String = "_systemKeys" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.OutputFileName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.OutputFileName + id: OutputFileName + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: OutputFileName + nameWithType: Constants.PropertyName.OutputFileName + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.OutputFileName + type: Field + source: + id: OutputFileName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 68 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string OutputFileName = "outputFileName" + return: + type: System.String + content.vb: Public Const OutputFileName As String = "outputFileName" +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName.RedirectUrl + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PropertyName.RedirectUrl + id: RedirectUrl + parent: DocFxToTemplate.Models.DocFx.Constants.PropertyName + langs: + - csharp + - vb + name: RedirectUrl + nameWithType: Constants.PropertyName.RedirectUrl + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName.RedirectUrl + type: Field + source: + id: RedirectUrl + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 70 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string RedirectUrl = "redirect_url" + return: + type: System.String + content.vb: Public Const RedirectUrl As String = "redirect_url" +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.Switches.yml b/api/DocFxToTemplate.Models.DocFx.Constants.Switches.yml new file mode 100644 index 0000000..29460ea --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.Switches.yml @@ -0,0 +1,380 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.Switches + commentId: T:DocFxToTemplate.Models.DocFx.Constants.Switches + id: Constants.Switches + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.Switches.DotnetToolMode + - DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode + langs: + - csharp + - vb + name: Constants.Switches + nameWithType: Constants.Switches + fullName: DocFxToTemplate.Models.DocFx.Constants.Switches + type: Class + source: + id: Switches + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 148 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.Switches + content.vb: Public Module Constants.Switches + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.Switches.DotnetToolMode + commentId: F:DocFxToTemplate.Models.DocFx.Constants.Switches.DotnetToolMode + id: DotnetToolMode + parent: DocFxToTemplate.Models.DocFx.Constants.Switches + langs: + - csharp + - vb + name: DotnetToolMode + nameWithType: Constants.Switches.DotnetToolMode + fullName: DocFxToTemplate.Models.DocFx.Constants.Switches.DotnetToolMode + type: Field + source: + id: DotnetToolMode + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 150 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string DotnetToolMode = "Docfx.DotnetToolMode" + return: + type: System.String + content.vb: Public Const DotnetToolMode As String = "Docfx.DotnetToolMode" +- uid: DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode + commentId: P:DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode + id: IsDotnetToolsMode + parent: DocFxToTemplate.Models.DocFx.Constants.Switches + langs: + - csharp + - vb + name: IsDotnetToolsMode + nameWithType: Constants.Switches.IsDotnetToolsMode + fullName: DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode + type: Property + source: + id: IsDotnetToolsMode + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 152 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static bool IsDotnetToolsMode { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Shared ReadOnly Property IsDotnetToolsMode As Boolean + overload: DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode* +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode* + commentId: Overload:DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode + href: DocFxToTemplate.Models.DocFx.Constants.Switches.html#DocFxToTemplate_Models_DocFx_Constants_Switches_IsDotnetToolsMode + name: IsDotnetToolsMode + nameWithType: Constants.Switches.IsDotnetToolsMode + fullName: DocFxToTemplate.Models.DocFx.Constants.Switches.IsDotnetToolsMode +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.TableOfContents.yml b/api/DocFxToTemplate.Models.DocFx.Constants.TableOfContents.yml new file mode 100644 index 0000000..3741cda --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.TableOfContents.yml @@ -0,0 +1,361 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + commentId: T:DocFxToTemplate.Models.DocFx.Constants.TableOfContents + id: Constants.TableOfContents + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.TableOfContents.MarkdownTocFileName + - DocFxToTemplate.Models.DocFx.Constants.TableOfContents.YamlTocFileName + langs: + - csharp + - vb + name: Constants.TableOfContents + nameWithType: Constants.TableOfContents + fullName: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + type: Class + source: + id: TableOfContents + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 108 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants.TableOfContents + content.vb: Public Module Constants.TableOfContents + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents.MarkdownTocFileName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.TableOfContents.MarkdownTocFileName + id: MarkdownTocFileName + parent: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + langs: + - csharp + - vb + name: MarkdownTocFileName + nameWithType: Constants.TableOfContents.MarkdownTocFileName + fullName: DocFxToTemplate.Models.DocFx.Constants.TableOfContents.MarkdownTocFileName + type: Field + source: + id: MarkdownTocFileName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 110 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string MarkdownTocFileName = "toc.md" + return: + type: System.String + content.vb: Public Const MarkdownTocFileName As String = "toc.md" +- uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents.YamlTocFileName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.TableOfContents.YamlTocFileName + id: YamlTocFileName + parent: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + langs: + - csharp + - vb + name: YamlTocFileName + nameWithType: Constants.TableOfContents.YamlTocFileName + fullName: DocFxToTemplate.Models.DocFx.Constants.TableOfContents.YamlTocFileName + type: Field + source: + id: YamlTocFileName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 111 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string YamlTocFileName = "toc.yml" + return: + type: System.String + content.vb: Public Const YamlTocFileName As String = "toc.yml" +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.Constants.yml b/api/DocFxToTemplate.Models.DocFx.Constants.yml new file mode 100644 index 0000000..f47e94e --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.Constants.yml @@ -0,0 +1,433 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.Constants + commentId: T:DocFxToTemplate.Models.DocFx.Constants + id: Constants + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.Constants.ConfigFileName + - DocFxToTemplate.Models.DocFx.Constants.ContentPlaceholder + - DocFxToTemplate.Models.DocFx.Constants.PrefixSeparator + - DocFxToTemplate.Models.DocFx.Constants.TocYamlFileName + - DocFxToTemplate.Models.DocFx.Constants.YamlExtension + langs: + - csharp + - vb + name: Constants + nameWithType: Constants + fullName: DocFxToTemplate.Models.DocFx.Constants + type: Class + source: + id: Constants + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 7 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public static class Constants + content.vb: Public Module Constants + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.Constants.ConfigFileName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ConfigFileName + id: ConfigFileName + parent: DocFxToTemplate.Models.DocFx.Constants + langs: + - csharp + - vb + name: ConfigFileName + nameWithType: Constants.ConfigFileName + fullName: DocFxToTemplate.Models.DocFx.Constants.ConfigFileName + type: Field + source: + id: ConfigFileName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string ConfigFileName = "docfx.json" + return: + type: System.String + content.vb: Public Const ConfigFileName As String = "docfx.json" +- uid: DocFxToTemplate.Models.DocFx.Constants.YamlExtension + commentId: F:DocFxToTemplate.Models.DocFx.Constants.YamlExtension + id: YamlExtension + parent: DocFxToTemplate.Models.DocFx.Constants + langs: + - csharp + - vb + name: YamlExtension + nameWithType: Constants.YamlExtension + fullName: DocFxToTemplate.Models.DocFx.Constants.YamlExtension + type: Field + source: + id: YamlExtension + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string YamlExtension = ".yml" + return: + type: System.String + content.vb: Public Const YamlExtension As String = ".yml" +- uid: DocFxToTemplate.Models.DocFx.Constants.ContentPlaceholder + commentId: F:DocFxToTemplate.Models.DocFx.Constants.ContentPlaceholder + id: ContentPlaceholder + parent: DocFxToTemplate.Models.DocFx.Constants + langs: + - csharp + - vb + name: ContentPlaceholder + nameWithType: Constants.ContentPlaceholder + fullName: DocFxToTemplate.Models.DocFx.Constants.ContentPlaceholder + type: Field + source: + id: ContentPlaceholder + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string ContentPlaceholder = "*content" + return: + type: System.String + content.vb: Public Const ContentPlaceholder As String = "*content" +- uid: DocFxToTemplate.Models.DocFx.Constants.PrefixSeparator + commentId: F:DocFxToTemplate.Models.DocFx.Constants.PrefixSeparator + id: PrefixSeparator + parent: DocFxToTemplate.Models.DocFx.Constants + langs: + - csharp + - vb + name: PrefixSeparator + nameWithType: Constants.PrefixSeparator + fullName: DocFxToTemplate.Models.DocFx.Constants.PrefixSeparator + type: Field + source: + id: PrefixSeparator + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 12 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string PrefixSeparator = "." + return: + type: System.String + content.vb: Public Const PrefixSeparator As String = "." +- uid: DocFxToTemplate.Models.DocFx.Constants.TocYamlFileName + commentId: F:DocFxToTemplate.Models.DocFx.Constants.TocYamlFileName + id: TocYamlFileName + parent: DocFxToTemplate.Models.DocFx.Constants + langs: + - csharp + - vb + name: TocYamlFileName + nameWithType: Constants.TocYamlFileName + fullName: DocFxToTemplate.Models.DocFx.Constants.TocYamlFileName + type: Field + source: + id: TocYamlFileName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs + startLine: 13 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public const string TocYamlFileName = "toc.yml" + return: + type: System.String + content.vb: Public Const TocYamlFileName As String = "toc.yml" +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String diff --git a/api/DocFxToTemplate.Models.DocFx.ExceptionInfo.yml b/api/DocFxToTemplate.Models.DocFx.ExceptionInfo.yml new file mode 100644 index 0000000..d813fe7 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.ExceptionInfo.yml @@ -0,0 +1,487 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo + commentId: T:DocFxToTemplate.Models.DocFx.ExceptionInfo + id: ExceptionInfo + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId + - DocFxToTemplate.Models.DocFx.ExceptionInfo.Description + - DocFxToTemplate.Models.DocFx.ExceptionInfo.Type + langs: + - csharp + - vb + name: ExceptionInfo + nameWithType: ExceptionInfo + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo + type: Class + source: + id: ExceptionInfo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class ExceptionInfo + content.vb: Public Class ExceptionInfo + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo.Type + commentId: P:DocFxToTemplate.Models.DocFx.ExceptionInfo.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.ExceptionInfo + langs: + - csharp + - vb + name: Type + nameWithType: ExceptionInfo.Type + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo.Type + type: Property + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "type")] + + [MergeOption(MergeOption.MergeKey)] + + [JsonPropertyName("type")] + + public string Type { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + + + Public Property Type As String + overload: DocFxToTemplate.Models.DocFx.ExceptionInfo.Type* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: type + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 0 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: type +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId + commentId: P:DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId + id: CommentId + parent: DocFxToTemplate.Models.DocFx.ExceptionInfo + langs: + - csharp + - vb + name: CommentId + nameWithType: ExceptionInfo.CommentId + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId + type: Property + source: + id: CommentId + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs + startLine: 17 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "commentId")] + + [JsonPropertyName("commentId")] + + public string CommentId { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property CommentId As String + overload: DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: commentId + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: commentId +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo.Description + commentId: P:DocFxToTemplate.Models.DocFx.ExceptionInfo.Description + id: Description + parent: DocFxToTemplate.Models.DocFx.ExceptionInfo + langs: + - csharp + - vb + name: Description + nameWithType: ExceptionInfo.Description + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo.Description + type: Property + source: + id: Description + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "description")] + + [JsonPropertyName("description")] + + public string Description { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Description As String + overload: DocFxToTemplate.Models.DocFx.ExceptionInfo.Description* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: description + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: description +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo.Type* + commentId: Overload:DocFxToTemplate.Models.DocFx.ExceptionInfo.Type + href: DocFxToTemplate.Models.DocFx.ExceptionInfo.html#DocFxToTemplate_Models_DocFx_ExceptionInfo_Type + name: Type + nameWithType: ExceptionInfo.Type + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo.Type +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId* + commentId: Overload:DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId + href: DocFxToTemplate.Models.DocFx.ExceptionInfo.html#DocFxToTemplate_Models_DocFx_ExceptionInfo_CommentId + name: CommentId + nameWithType: ExceptionInfo.CommentId + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo.CommentId +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo.Description* + commentId: Overload:DocFxToTemplate.Models.DocFx.ExceptionInfo.Description + href: DocFxToTemplate.Models.DocFx.ExceptionInfo.html#DocFxToTemplate_Models_DocFx_ExceptionInfo_Description + name: Description + nameWithType: ExceptionInfo.Description + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo.Description diff --git a/api/DocFxToTemplate.Models.DocFx.GitDetail.yml b/api/DocFxToTemplate.Models.DocFx.GitDetail.yml new file mode 100644 index 0000000..40736a1 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.GitDetail.yml @@ -0,0 +1,543 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.GitDetail + commentId: T:DocFxToTemplate.Models.DocFx.GitDetail + id: GitDetail + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.GitDetail.Branch + - DocFxToTemplate.Models.DocFx.GitDetail.Path + - DocFxToTemplate.Models.DocFx.GitDetail.Repo + langs: + - csharp + - vb + name: GitDetail + nameWithType: GitDetail + fullName: DocFxToTemplate.Models.DocFx.GitDetail + type: Class + source: + id: GitDetail + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: 'public record GitDetail : IEquatable' + content.vb: Public Class GitDetail Implements IEquatable(Of GitDetail) + inheritance: + - System.Object + implements: + - System.IEquatable{DocFxToTemplate.Models.DocFx.GitDetail} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.GitDetail.Path + commentId: P:DocFxToTemplate.Models.DocFx.GitDetail.Path + id: Path + parent: DocFxToTemplate.Models.DocFx.GitDetail + langs: + - csharp + - vb + name: Path + nameWithType: GitDetail.Path + fullName: DocFxToTemplate.Models.DocFx.GitDetail.Path + type: Property + source: + id: Path + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs + startLine: 13 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Relative path of current file to the Git Root Directory + example: [] + syntax: + content: >- + [YamlMember(Alias = "path")] + + [JsonPropertyName("path")] + + public string Path { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Path As String + overload: DocFxToTemplate.Models.DocFx.GitDetail.Path* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: path + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: path +- uid: DocFxToTemplate.Models.DocFx.GitDetail.Branch + commentId: P:DocFxToTemplate.Models.DocFx.GitDetail.Branch + id: Branch + parent: DocFxToTemplate.Models.DocFx.GitDetail + langs: + - csharp + - vb + name: Branch + nameWithType: GitDetail.Branch + fullName: DocFxToTemplate.Models.DocFx.GitDetail.Branch + type: Property + source: + id: Branch + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs + startLine: 17 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "branch")] + + [JsonPropertyName("branch")] + + public string Branch { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Branch As String + overload: DocFxToTemplate.Models.DocFx.GitDetail.Branch* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: branch + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: branch +- uid: DocFxToTemplate.Models.DocFx.GitDetail.Repo + commentId: P:DocFxToTemplate.Models.DocFx.GitDetail.Repo + id: Repo + parent: DocFxToTemplate.Models.DocFx.GitDetail + langs: + - csharp + - vb + name: Repo + nameWithType: GitDetail.Repo + fullName: DocFxToTemplate.Models.DocFx.GitDetail.Repo + type: Property + source: + id: Repo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "repo")] + + [JsonPropertyName("repo")] + + public string Repo { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Repo As String + overload: DocFxToTemplate.Models.DocFx.GitDetail.Repo* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: repo + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: repo +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.IEquatable{DocFxToTemplate.Models.DocFx.GitDetail} + commentId: T:System.IEquatable{DocFxToTemplate.Models.DocFx.GitDetail} + parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of GitDetail) + fullName.vb: System.IEquatable(Of DocFxToTemplate.Models.DocFx.GitDetail) + name.vb: IEquatable(Of GitDetail) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.GitDetail + name: GitDetail + href: DocFxToTemplate.Models.DocFx.GitDetail.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.GitDetail + name: GitDetail + href: DocFxToTemplate.Models.DocFx.GitDetail.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.GitDetail.Path* + commentId: Overload:DocFxToTemplate.Models.DocFx.GitDetail.Path + href: DocFxToTemplate.Models.DocFx.GitDetail.html#DocFxToTemplate_Models_DocFx_GitDetail_Path + name: Path + nameWithType: GitDetail.Path + fullName: DocFxToTemplate.Models.DocFx.GitDetail.Path +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.GitDetail.Branch* + commentId: Overload:DocFxToTemplate.Models.DocFx.GitDetail.Branch + href: DocFxToTemplate.Models.DocFx.GitDetail.html#DocFxToTemplate_Models_DocFx_GitDetail_Branch + name: Branch + nameWithType: GitDetail.Branch + fullName: DocFxToTemplate.Models.DocFx.GitDetail.Branch +- uid: DocFxToTemplate.Models.DocFx.GitDetail.Repo* + commentId: Overload:DocFxToTemplate.Models.DocFx.GitDetail.Repo + href: DocFxToTemplate.Models.DocFx.GitDetail.html#DocFxToTemplate_Models_DocFx_GitDetail_Repo + name: Repo + nameWithType: GitDetail.Repo + fullName: DocFxToTemplate.Models.DocFx.GitDetail.Repo diff --git a/api/DocFxToTemplate.Models.DocFx.ItemViewModel.yml b/api/DocFxToTemplate.Models.DocFx.ItemViewModel.yml new file mode 100644 index 0000000..e1ab3e3 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.ItemViewModel.yml @@ -0,0 +1,3910 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ItemViewModel + id: ItemViewModel + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes + - DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList + - DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes + - DocFxToTemplate.Models.DocFx.ItemViewModel.Children + - DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId + - DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual + - DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses + - DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs + - DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation + - DocFxToTemplate.Models.DocFx.ItemViewModel.Events + - DocFxToTemplate.Models.DocFx.ItemViewModel.Examples + - DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions + - DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods + - DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs + - DocFxToTemplate.Models.DocFx.ItemViewModel.Fields + - DocFxToTemplate.Models.DocFx.ItemViewModel.FullName + - DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp + - DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB + - DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames + - DocFxToTemplate.Models.DocFx.ItemViewModel.Href + - DocFxToTemplate.Models.DocFx.ItemViewModel.Id + - DocFxToTemplate.Models.DocFx.ItemViewModel.Implements + - DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs + - DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance + - DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs + - DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers + - DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs + - DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation + - DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod + - DocFxToTemplate.Models.DocFx.ItemViewModel.Link + - DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata + - DocFxToTemplate.Models.DocFx.ItemViewModel.Methods + - DocFxToTemplate.Models.DocFx.ItemViewModel.Name + - DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp + - DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB + - DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType + - DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp + - DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB + - DocFxToTemplate.Models.DocFx.ItemViewModel.Names + - DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType + - DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName + - DocFxToTemplate.Models.DocFx.ItemViewModel.Overload + - DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden + - DocFxToTemplate.Models.DocFx.ItemViewModel.Parent + - DocFxToTemplate.Models.DocFx.ItemViewModel.Platform + - DocFxToTemplate.Models.DocFx.ItemViewModel.Properties + - DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks + - DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos + - DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference + - DocFxToTemplate.Models.DocFx.ItemViewModel.Source + - DocFxToTemplate.Models.DocFx.ItemViewModel.Summary + - DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages + - DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax + - DocFxToTemplate.Models.DocFx.ItemViewModel.Type + - DocFxToTemplate.Models.DocFx.ItemViewModel.Uid + langs: + - csharp + - vb + name: ItemViewModel + nameWithType: ItemViewModel + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel + type: Class + source: + id: ItemViewModel + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class ItemViewModel + content.vb: Public Class ItemViewModel + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Uid + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Uid + id: Uid + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Uid + nameWithType: ItemViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Uid + type: Property + source: + id: Uid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "uid")] + + [JsonPropertyName("uid")] + + [MergeOption(MergeOption.MergeKey)] + + public string? Uid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + + + Public Property Uid As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Uid* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: uid + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: uid + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 0 +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId + id: CommentId + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: CommentId + nameWithType: ItemViewModel.CommentId + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId + type: Property + source: + id: CommentId + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "commentId")] + + [JsonPropertyName("commentId")] + + public string? CommentId { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property CommentId As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: commentId + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: commentId +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Id + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Id + id: Id + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Id + nameWithType: ItemViewModel.Id + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Id + type: Property + source: + id: Id + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "id")] + + [JsonPropertyName("id")] + + public string? Id { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Id As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Id* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: id + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: id +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation + id: IsExplicitInterfaceImplementation + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: IsExplicitInterfaceImplementation + nameWithType: ItemViewModel.IsExplicitInterfaceImplementation + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation + type: Property + source: + id: IsExplicitInterfaceImplementation + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 24 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "isEii")] + + [JsonPropertyName("isEii")] + + public bool IsExplicitInterfaceImplementation { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: >- + + + + + Public Property IsExplicitInterfaceImplementation As Boolean + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: isEii + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: isEii +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod + id: IsExtensionMethod + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: IsExtensionMethod + nameWithType: ItemViewModel.IsExtensionMethod + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod + type: Property + source: + id: IsExtensionMethod + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 28 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "isExtensionMethod")] + + [JsonPropertyName("isExtensionMethod")] + + public bool IsExtensionMethod { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: >- + + + + + Public Property IsExtensionMethod As Boolean + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: isExtensionMethod + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: isExtensionMethod +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Parent + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Parent + id: Parent + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Parent + nameWithType: ItemViewModel.Parent + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Parent + type: Property + source: + id: Parent + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 32 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "parent")] + + [JsonPropertyName("parent")] + + public string Parent { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Parent As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Parent* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: parent + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: parent +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Children + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Children + id: Children + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Children + nameWithType: ItemViewModel.Children + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Children + type: Property + source: + id: Children + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 37 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "children")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("children")] + + public List? Children { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property Children As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Children* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: children + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: children +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Href + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Href + id: Href + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Href + nameWithType: ItemViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Href + type: Property + source: + id: Href + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 43 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "href")] + + [JsonPropertyName("href")] + + public string Href { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Href As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Href* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: href + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: href +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages + id: SupportedLanguages + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: SupportedLanguages + nameWithType: ItemViewModel.SupportedLanguages + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages + type: Property + source: + id: SupportedLanguages + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 47 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "langs")] + + [JsonPropertyName("langs")] + + public string[] SupportedLanguages { get; set; } + parameters: [] + return: + type: System.String[] + content.vb: >- + + + + + Public Property SupportedLanguages As String() + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: langs + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: langs +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Name + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Name + nameWithType: ItemViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 51 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "name")] + + [JsonPropertyName("name")] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: name + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Names + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Names + id: Names + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Names + nameWithType: ItemViewModel.Names + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Names + type: Property + source: + id: Names + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 55 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("name.")] + + [JsonIgnore] + + public SortedList Names { get; set; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property Names As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Names* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp + id: NameForCSharp + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NameForCSharp + nameWithType: ItemViewModel.NameForCSharp + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp + type: Property + source: + id: NameForCSharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 59 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string NameForCSharp { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NameForCSharp As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB + id: NameForVB + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NameForVB + nameWithType: ItemViewModel.NameForVB + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB + type: Property + source: + id: NameForVB + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 77 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string NameForVB { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NameForVB As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType + id: NameWithType + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NameWithType + nameWithType: ItemViewModel.NameWithType + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType + type: Property + source: + id: NameWithType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 95 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "nameWithType")] + + [JsonPropertyName("nameWithType")] + + public string NameWithType { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NameWithType As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: nameWithType + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: nameWithType +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType + id: NamesWithType + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NamesWithType + nameWithType: ItemViewModel.NamesWithType + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType + type: Property + source: + id: NamesWithType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 99 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("nameWithType.")] + + [JsonIgnore] + + public SortedList NamesWithType { get; set; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property NamesWithType As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: nameWithType. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp + id: NameWithTypeForCSharp + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NameWithTypeForCSharp + nameWithType: ItemViewModel.NameWithTypeForCSharp + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp + type: Property + source: + id: NameWithTypeForCSharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 103 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string NameWithTypeForCSharp { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NameWithTypeForCSharp As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB + id: NameWithTypeForVB + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NameWithTypeForVB + nameWithType: ItemViewModel.NameWithTypeForVB + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB + type: Property + source: + id: NameWithTypeForVB + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 121 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string NameWithTypeForVB { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NameWithTypeForVB As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullName + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.FullName + id: FullName + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: FullName + nameWithType: ItemViewModel.FullName + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullName + type: Property + source: + id: FullName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 139 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "fullName")] + + [JsonPropertyName("fullName")] + + public string FullName { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property FullName As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.FullName* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: fullName + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: fullName +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames + id: FullNames + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: FullNames + nameWithType: ItemViewModel.FullNames + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames + type: Property + source: + id: FullNames + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 143 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("fullName.")] + + [JsonIgnore] + + public SortedList FullNames { get; set; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property FullNames As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: fullName. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp + id: FullNameForCSharp + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: FullNameForCSharp + nameWithType: ItemViewModel.FullNameForCSharp + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp + type: Property + source: + id: FullNameForCSharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 147 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string FullNameForCSharp { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property FullNameForCSharp As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB + id: FullNameForVB + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: FullNameForVB + nameWithType: ItemViewModel.FullNameForVB + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB + type: Property + source: + id: FullNameForVB + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 165 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string FullNameForVB { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property FullNameForVB As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Type + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Type + nameWithType: ItemViewModel.Type + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Type + type: Property + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 183 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "type")] + + [JsonPropertyName("type")] + + public MemberType? Type { get; set; } + parameters: [] + return: + type: System.Nullable{DocFxToTemplate.Models.DocFx.MemberType} + content.vb: >- + + + + + Public Property Type As MemberType? + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Type* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: type + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: type +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Source + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Source + id: Source + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Source + nameWithType: ItemViewModel.Source + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Source + type: Property + source: + id: Source + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 187 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "source")] + + [JsonPropertyName("source")] + + public SourceDetail? Source { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.SourceDetail + content.vb: >- + + + + + Public Property Source As SourceDetail + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Source* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: source + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: source +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation + id: Documentation + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Documentation + nameWithType: ItemViewModel.Documentation + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation + type: Property + source: + id: Documentation + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 191 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "documentation")] + + [JsonPropertyName("documentation")] + + public SourceDetail Documentation { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.SourceDetail + content.vb: >- + + + + + Public Property Documentation As SourceDetail + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: documentation + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: documentation +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList + id: AssemblyNameList + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: AssemblyNameList + nameWithType: ItemViewModel.AssemblyNameList + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList + type: Property + source: + id: AssemblyNameList + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 195 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "assemblies")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("assemblies")] + + public List? AssemblyNameList { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property AssemblyNameList As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: assemblies + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: assemblies +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName + id: NamespaceName + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: NamespaceName + nameWithType: ItemViewModel.NamespaceName + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName + type: Property + source: + id: NamespaceName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 200 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "namespace")] + + [JsonPropertyName("namespace")] + + public string NamespaceName { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NamespaceName As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: namespace + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: namespace +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Summary + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Summary + id: Summary + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Summary + nameWithType: ItemViewModel.Summary + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Summary + type: Property + source: + id: Summary + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 205 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "summary")] + + [JsonPropertyName("summary")] + + public string Summary { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Summary As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Summary* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: summary + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: summary +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes + id: AdditionalNotes + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: AdditionalNotes + nameWithType: ItemViewModel.AdditionalNotes + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes + type: Property + source: + id: AdditionalNotes + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 210 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "additionalNotes")] + + [JsonPropertyName("additionalNotes")] + + public AdditionalNotes AdditionalNotes { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.AdditionalNotes + content.vb: >- + + + + + Public Property AdditionalNotes As AdditionalNotes + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: additionalNotes + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: additionalNotes +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks + id: Remarks + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Remarks + nameWithType: ItemViewModel.Remarks + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks + type: Property + source: + id: Remarks + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 214 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "remarks")] + + [JsonPropertyName("remarks")] + + public string Remarks { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Remarks As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: remarks + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: remarks +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Examples + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Examples + id: Examples + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Examples + nameWithType: ItemViewModel.Examples + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Examples + type: Property + source: + id: Examples + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 219 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "example")] + + [JsonPropertyName("example")] + + [MergeOption(MergeOption.Replace)] + + public List? Examples { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property Examples As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Examples* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: example + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: example + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 2 +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax + id: Syntax + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Syntax + nameWithType: ItemViewModel.Syntax + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax + type: Property + source: + id: Syntax + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 225 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "syntax")] + + [JsonPropertyName("syntax")] + + public SyntaxDetailViewModel? Syntax { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + content.vb: >- + + + + + Public Property Syntax As SyntaxDetailViewModel + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: syntax + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: syntax +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden + id: Overridden + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Overridden + nameWithType: ItemViewModel.Overridden + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden + type: Property + source: + id: Overridden + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 229 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "overridden")] + + [JsonPropertyName("overridden")] + + public string Overridden { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Overridden As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: overridden + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: overridden +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Overload + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Overload + id: Overload + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Overload + nameWithType: ItemViewModel.Overload + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Overload + type: Property + source: + id: Overload + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 234 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "overload")] + + [JsonPropertyName("overload")] + + public string Overload { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Overload As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Overload* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: overload + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: overload +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions + id: Exceptions + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Exceptions + nameWithType: ItemViewModel.Exceptions + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions + type: Property + source: + id: Exceptions + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 239 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "exceptions")] + + [JsonPropertyName("exceptions")] + + public List? Exceptions { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ExceptionInfo} + content.vb: >- + + + + + Public Property Exceptions As List(Of ExceptionInfo) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: exceptions + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: exceptions +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos + id: SeeAlsos + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: SeeAlsos + nameWithType: ItemViewModel.SeeAlsos + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos + type: Property + source: + id: SeeAlsos + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 243 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "seealso")] + + [JsonPropertyName("seealso")] + + public List? SeeAlsos { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.LinkInfo} + content.vb: >- + + + + + Public Property SeeAlsos As List(Of LinkInfo) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: seealso + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: seealso +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference + id: SeeAlsosUidReference + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: SeeAlsosUidReference + nameWithType: ItemViewModel.SeeAlsosUidReference + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference + type: Property + source: + id: SeeAlsosUidReference + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 247 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public List SeeAlsosUidReference { get; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + Public ReadOnly Property SeeAlsosUidReference As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance + id: Inheritance + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Inheritance + nameWithType: ItemViewModel.Inheritance + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance + type: Property + source: + id: Inheritance + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 253 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "inheritance")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("inheritance")] + + public List? Inheritance { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property Inheritance As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: inheritance + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: inheritance +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses + id: DerivedClasses + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: DerivedClasses + nameWithType: ItemViewModel.DerivedClasses + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses + type: Property + source: + id: DerivedClasses + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 259 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "derivedClasses")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("derivedClasses")] + + public List? DerivedClasses { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property DerivedClasses As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: derivedClasses + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: derivedClasses +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Implements + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Implements + id: Implements + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Implements + nameWithType: ItemViewModel.Implements + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Implements + type: Property + source: + id: Implements + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 265 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "implements")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("implements")] + + public List? Implements { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property [Implements] As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Implements* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: implements + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: implements +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers + id: InheritedMembers + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: InheritedMembers + nameWithType: ItemViewModel.InheritedMembers + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers + type: Property + source: + id: InheritedMembers + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 271 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "inheritedMembers")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("inheritedMembers")] + + public List? InheritedMembers { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property InheritedMembers As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: inheritedMembers + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: inheritedMembers +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods + id: ExtensionMethods + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: ExtensionMethods + nameWithType: ItemViewModel.ExtensionMethods + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods + type: Property + source: + id: ExtensionMethods + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 277 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "extensionMethods")] + + [MergeOption(MergeOption.Ignore)] + + [JsonPropertyName("extensionMethods")] + + public List? ExtensionMethods { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property ExtensionMethods As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: extensionMethods + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: extensionMethods +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual + id: Conceptual + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Conceptual + nameWithType: ItemViewModel.Conceptual + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual + type: Property + source: + id: Conceptual + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 283 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "conceptual")] + + [JsonPropertyName("conceptual")] + + public string Conceptual { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Conceptual As String + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: conceptual + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: conceptual +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Platform + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Platform + id: Platform + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Platform + nameWithType: ItemViewModel.Platform + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Platform + type: Property + source: + id: Platform + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 288 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "platform")] + + [JsonPropertyName("platform")] + + [MergeOption(MergeOption.Replace)] + + public List? Platform { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{System.String} + content.vb: >- + + + + + + + Public Property Platform As List(Of String) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Platform* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: platform + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: platform + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 2 +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes + id: Attributes + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Attributes + nameWithType: ItemViewModel.Attributes + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes + type: Property + source: + id: Attributes + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 293 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "attributes")] + + [JsonPropertyName("attributes")] + + [MergeOption(MergeOption.Ignore)] + + public List? Attributes { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.AttributeInfo} + content.vb: >- + + + + + + + Public Property Attributes As List(Of AttributeInfo) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: attributes + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: attributes + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata + id: Metadata + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Metadata + nameWithType: ItemViewModel.Metadata + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata + type: Property + source: + id: Metadata + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs + startLine: 298 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember] + + [JsonIgnore] + + public Dictionary Metadata { get; set; } + parameters: [] + return: + type: System.Collections.Generic.Dictionary{System.String,System.Object} + content.vb: >- + + + + + Public Property Metadata As Dictionary(Of String, Object) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Properties + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Properties + id: Properties + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Properties + nameWithType: ItemViewModel.Properties + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Properties + type: Property + source: + id: Properties + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public ItemViewModel[] Properties { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ItemViewModel[] + content.vb: >- + + + + + + + Public Property Properties As ItemViewModel() + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Properties* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Fields + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Fields + id: Fields + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Fields + nameWithType: ItemViewModel.Fields + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Fields + type: Property + source: + id: Fields + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public ItemViewModel[] Fields { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ItemViewModel[] + content.vb: >- + + + + + + + Public Property Fields As ItemViewModel() + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Fields* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Methods + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Methods + id: Methods + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Methods + nameWithType: ItemViewModel.Methods + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Methods + type: Property + source: + id: Methods + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public ItemViewModel[] Methods { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ItemViewModel[] + content.vb: >- + + + + + + + Public Property Methods As ItemViewModel() + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Methods* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Events + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Events + id: Events + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Events + nameWithType: ItemViewModel.Events + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Events + type: Property + source: + id: Events + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 26 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public ItemViewModel[] Events { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ItemViewModel[] + content.vb: >- + + + + + + + Public Property Events As ItemViewModel() + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Events* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs + id: InheritanceRefs + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: InheritanceRefs + nameWithType: ItemViewModel.InheritanceRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs + type: Property + source: + id: InheritanceRefs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 31 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public List InheritanceRefs { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + content.vb: >- + + + + + + + Public Property InheritanceRefs As List(Of ReferenceViewModel) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs + id: DerivedClassesRefs + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: DerivedClassesRefs + nameWithType: ItemViewModel.DerivedClassesRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs + type: Property + source: + id: DerivedClassesRefs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 36 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public List DerivedClassesRefs { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + content.vb: >- + + + + + + + Public Property DerivedClassesRefs As List(Of ReferenceViewModel) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs + id: ImplementsRefs + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: ImplementsRefs + nameWithType: ItemViewModel.ImplementsRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs + type: Property + source: + id: ImplementsRefs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 41 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public List ImplementsRefs { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + content.vb: >- + + + + + + + Public Property ImplementsRefs As List(Of ReferenceViewModel) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs + id: InheritedMembersRefs + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: InheritedMembersRefs + nameWithType: ItemViewModel.InheritedMembersRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs + type: Property + source: + id: InheritedMembersRefs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 46 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public List InheritedMembersRefs { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + content.vb: >- + + + + + + + Public Property InheritedMembersRefs As List(Of ReferenceViewModel) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs + id: ExtensionMethodsRefs + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: ExtensionMethodsRefs + nameWithType: ItemViewModel.ExtensionMethodsRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs + type: Property + source: + id: ExtensionMethodsRefs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 51 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public List ExtensionMethodsRefs { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + content.vb: >- + + + + + + + Public Property ExtensionMethodsRefs As List(Of ReferenceViewModel) + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Link + commentId: P:DocFxToTemplate.Models.DocFx.ItemViewModel.Link + id: Link + parent: DocFxToTemplate.Models.DocFx.ItemViewModel + langs: + - csharp + - vb + name: Link + nameWithType: ItemViewModel.Link + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Link + type: Property + source: + id: Link + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 57 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + [IgnoreDataMember] + + public MarkdownLink? Link { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.MarkdownLink + content.vb: >- + + + + + + + Public Property Link As MarkdownLink + overload: DocFxToTemplate.Models.DocFx.ItemViewModel.Link* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Runtime.Serialization.IgnoreDataMemberAttribute + ctor: System.Runtime.Serialization.IgnoreDataMemberAttribute.#ctor + arguments: [] +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Uid* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Uid + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Uid + name: Uid + nameWithType: ItemViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Uid +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_CommentId + name: CommentId + nameWithType: ItemViewModel.CommentId + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.CommentId +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Id* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Id + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Id + name: Id + nameWithType: ItemViewModel.Id + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Id +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_IsExplicitInterfaceImplementation + name: IsExplicitInterfaceImplementation + nameWithType: ItemViewModel.IsExplicitInterfaceImplementation + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExplicitInterfaceImplementation +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_IsExtensionMethod + name: IsExtensionMethod + nameWithType: ItemViewModel.IsExtensionMethod + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.IsExtensionMethod +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Parent* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Parent + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Parent + name: Parent + nameWithType: ItemViewModel.Parent + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Parent +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Children* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Children + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Children + name: Children + nameWithType: ItemViewModel.Children + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Children +- uid: System.Collections.Generic.List{System.String} + commentId: T:System.Collections.Generic.List{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of String) + fullName.vb: System.Collections.Generic.List(Of String) + name.vb: List(Of String) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Href* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Href + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Href + name: Href + nameWithType: ItemViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Href +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_SupportedLanguages + name: SupportedLanguages + nameWithType: ItemViewModel.SupportedLanguages + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.SupportedLanguages +- uid: System.String[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string[] + nameWithType: string[] + fullName: string[] + nameWithType.vb: String() + fullName.vb: String() + name.vb: String() + spec.csharp: + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '[' + - name: ']' + spec.vb: + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ( + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Name + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Name + name: Name + nameWithType: ItemViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Name +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Names* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Names + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Names + name: Names + nameWithType: ItemViewModel.Names + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Names +- uid: System.Collections.Generic.SortedList{System.String,System.String} + commentId: T:System.Collections.Generic.SortedList{System.String,System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.SortedList`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + name: SortedList + nameWithType: SortedList + fullName: System.Collections.Generic.SortedList + nameWithType.vb: SortedList(Of String, String) + fullName.vb: System.Collections.Generic.SortedList(Of String, String) + name.vb: SortedList(Of String, String) + spec.csharp: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.SortedList`2 + commentId: T:System.Collections.Generic.SortedList`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + name: SortedList + nameWithType: SortedList + fullName: System.Collections.Generic.SortedList + nameWithType.vb: SortedList(Of TKey, TValue) + fullName.vb: System.Collections.Generic.SortedList(Of TKey, TValue) + name.vb: SortedList(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NameForCSharp + name: NameForCSharp + nameWithType: ItemViewModel.NameForCSharp + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForCSharp +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NameForVB + name: NameForVB + nameWithType: ItemViewModel.NameForVB + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameForVB +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NameWithType + name: NameWithType + nameWithType: ItemViewModel.NameWithType + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithType +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NamesWithType + name: NamesWithType + nameWithType: ItemViewModel.NamesWithType + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NamesWithType +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NameWithTypeForCSharp + name: NameWithTypeForCSharp + nameWithType: ItemViewModel.NameWithTypeForCSharp + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForCSharp +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NameWithTypeForVB + name: NameWithTypeForVB + nameWithType: ItemViewModel.NameWithTypeForVB + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NameWithTypeForVB +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullName* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.FullName + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_FullName + name: FullName + nameWithType: ItemViewModel.FullName + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullName +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_FullNames + name: FullNames + nameWithType: ItemViewModel.FullNames + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNames +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_FullNameForCSharp + name: FullNameForCSharp + nameWithType: ItemViewModel.FullNameForCSharp + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForCSharp +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_FullNameForVB + name: FullNameForVB + nameWithType: ItemViewModel.FullNameForVB + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.FullNameForVB +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Type* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Type + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Type + name: Type + nameWithType: ItemViewModel.Type + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Type +- uid: System.Nullable{DocFxToTemplate.Models.DocFx.MemberType} + commentId: T:System.Nullable{DocFxToTemplate.Models.DocFx.MemberType} + parent: System + definition: System.Nullable`1 + href: DocFxToTemplate.Models.DocFx.MemberType.html + name: MemberType? + nameWithType: MemberType? + fullName: DocFxToTemplate.Models.DocFx.MemberType? + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.MemberType + name: MemberType + href: DocFxToTemplate.Models.DocFx.MemberType.html + - name: '?' + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.MemberType + name: MemberType + href: DocFxToTemplate.Models.DocFx.MemberType.html + - name: '?' +- uid: System.Nullable`1 + commentId: T:System.Nullable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of T) + fullName.vb: System.Nullable(Of T) + name.vb: Nullable(Of T) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Source* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Source + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Source + name: Source + nameWithType: ItemViewModel.Source + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Source +- uid: DocFxToTemplate.Models.DocFx.SourceDetail + commentId: T:DocFxToTemplate.Models.DocFx.SourceDetail + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.SourceDetail.html + name: SourceDetail + nameWithType: SourceDetail + fullName: DocFxToTemplate.Models.DocFx.SourceDetail +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Documentation + name: Documentation + nameWithType: ItemViewModel.Documentation + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Documentation +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_AssemblyNameList + name: AssemblyNameList + nameWithType: ItemViewModel.AssemblyNameList + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.AssemblyNameList +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_NamespaceName + name: NamespaceName + nameWithType: ItemViewModel.NamespaceName + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.NamespaceName +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Summary* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Summary + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Summary + name: Summary + nameWithType: ItemViewModel.Summary + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Summary +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_AdditionalNotes + name: AdditionalNotes + nameWithType: ItemViewModel.AdditionalNotes + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.AdditionalNotes +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes + commentId: T:DocFxToTemplate.Models.DocFx.AdditionalNotes + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.AdditionalNotes.html + name: AdditionalNotes + nameWithType: AdditionalNotes + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Remarks + name: Remarks + nameWithType: ItemViewModel.Remarks + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Remarks +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Examples* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Examples + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Examples + name: Examples + nameWithType: ItemViewModel.Examples + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Examples +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Syntax + name: Syntax + nameWithType: ItemViewModel.Syntax + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Syntax +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + commentId: T:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html + name: SyntaxDetailViewModel + nameWithType: SyntaxDetailViewModel + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Overridden + name: Overridden + nameWithType: ItemViewModel.Overridden + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Overridden +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Overload* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Overload + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Overload + name: Overload + nameWithType: ItemViewModel.Overload + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Overload +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Exceptions + name: Exceptions + nameWithType: ItemViewModel.Exceptions + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Exceptions +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ExceptionInfo} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ExceptionInfo} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of ExceptionInfo) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.ExceptionInfo) + name.vb: List(Of ExceptionInfo) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.ExceptionInfo + name: ExceptionInfo + href: DocFxToTemplate.Models.DocFx.ExceptionInfo.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.ExceptionInfo + name: ExceptionInfo + href: DocFxToTemplate.Models.DocFx.ExceptionInfo.html + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_SeeAlsos + name: SeeAlsos + nameWithType: ItemViewModel.SeeAlsos + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsos +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.LinkInfo} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.LinkInfo} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of LinkInfo) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.LinkInfo) + name.vb: List(Of LinkInfo) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.LinkInfo + name: LinkInfo + href: DocFxToTemplate.Models.DocFx.LinkInfo.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.LinkInfo + name: LinkInfo + href: DocFxToTemplate.Models.DocFx.LinkInfo.html + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_SeeAlsosUidReference + name: SeeAlsosUidReference + nameWithType: ItemViewModel.SeeAlsosUidReference + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.SeeAlsosUidReference +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Inheritance + name: Inheritance + nameWithType: ItemViewModel.Inheritance + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Inheritance +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_DerivedClasses + name: DerivedClasses + nameWithType: ItemViewModel.DerivedClasses + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClasses +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Implements* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Implements + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Implements + name: Implements + nameWithType: ItemViewModel.Implements + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Implements +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_InheritedMembers + name: InheritedMembers + nameWithType: ItemViewModel.InheritedMembers + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembers +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_ExtensionMethods + name: ExtensionMethods + nameWithType: ItemViewModel.ExtensionMethods + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethods +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Conceptual + name: Conceptual + nameWithType: ItemViewModel.Conceptual + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Conceptual +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Platform* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Platform + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Platform + name: Platform + nameWithType: ItemViewModel.Platform + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Platform +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Attributes + name: Attributes + nameWithType: ItemViewModel.Attributes + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Attributes +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.AttributeInfo} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.AttributeInfo} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of AttributeInfo) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.AttributeInfo) + name.vb: List(Of AttributeInfo) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.AttributeInfo + name: AttributeInfo + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.AttributeInfo + name: AttributeInfo + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Metadata + name: Metadata + nameWithType: ItemViewModel.Metadata + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Metadata +- uid: System.Collections.Generic.Dictionary{System.String,System.Object} + commentId: T:System.Collections.Generic.Dictionary{System.String,System.Object} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of String, Object) + fullName.vb: System.Collections.Generic.Dictionary(Of String, Object) + name.vb: Dictionary(Of String, Object) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Properties* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Properties + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Properties + name: Properties + nameWithType: ItemViewModel.Properties + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Properties +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel[] + isExternal: true + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + name: ItemViewModel[] + nameWithType: ItemViewModel[] + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel[] + nameWithType.vb: ItemViewModel() + fullName.vb: DocFxToTemplate.Models.DocFx.ItemViewModel() + name.vb: ItemViewModel() + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.ItemViewModel + name: ItemViewModel + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + - name: '[' + - name: ']' + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.ItemViewModel + name: ItemViewModel + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + - name: ( + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Fields* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Fields + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Fields + name: Fields + nameWithType: ItemViewModel.Fields + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Fields +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Methods* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Methods + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Methods + name: Methods + nameWithType: ItemViewModel.Methods + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Methods +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Events* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Events + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Events + name: Events + nameWithType: ItemViewModel.Events + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Events +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_InheritanceRefs + name: InheritanceRefs + nameWithType: ItemViewModel.InheritanceRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritanceRefs +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of ReferenceViewModel) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.ReferenceViewModel) + name.vb: List(Of ReferenceViewModel) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + name: ReferenceViewModel + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + name: ReferenceViewModel + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_DerivedClassesRefs + name: DerivedClassesRefs + nameWithType: ItemViewModel.DerivedClassesRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.DerivedClassesRefs +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_ImplementsRefs + name: ImplementsRefs + nameWithType: ItemViewModel.ImplementsRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.ImplementsRefs +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_InheritedMembersRefs + name: InheritedMembersRefs + nameWithType: ItemViewModel.InheritedMembersRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.InheritedMembersRefs +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_ExtensionMethodsRefs + name: ExtensionMethodsRefs + nameWithType: ItemViewModel.ExtensionMethodsRefs + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.ExtensionMethodsRefs +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel.Link* + commentId: Overload:DocFxToTemplate.Models.DocFx.ItemViewModel.Link + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html#DocFxToTemplate_Models_DocFx_ItemViewModel_Link + name: Link + nameWithType: ItemViewModel.Link + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel.Link +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink + commentId: T:DocFxToTemplate.Models.DocFx.MarkdownLink + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html + name: MarkdownLink + nameWithType: MarkdownLink + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink diff --git a/api/DocFxToTemplate.Models.DocFx.LinkInfo.yml b/api/DocFxToTemplate.Models.DocFx.LinkInfo.yml new file mode 100644 index 0000000..d6a29cb --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.LinkInfo.yml @@ -0,0 +1,567 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.LinkInfo + commentId: T:DocFxToTemplate.Models.DocFx.LinkInfo + id: LinkInfo + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.LinkInfo.AltText + - DocFxToTemplate.Models.DocFx.LinkInfo.CommentId + - DocFxToTemplate.Models.DocFx.LinkInfo.LinkId + - DocFxToTemplate.Models.DocFx.LinkInfo.LinkType + langs: + - csharp + - vb + name: LinkInfo + nameWithType: LinkInfo + fullName: DocFxToTemplate.Models.DocFx.LinkInfo + type: Class + source: + id: LinkInfo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class LinkInfo + content.vb: Public Class LinkInfo + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.LinkType + commentId: P:DocFxToTemplate.Models.DocFx.LinkInfo.LinkType + id: LinkType + parent: DocFxToTemplate.Models.DocFx.LinkInfo + langs: + - csharp + - vb + name: LinkType + nameWithType: LinkInfo.LinkType + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.LinkType + type: Property + source: + id: LinkType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "linkType")] + + [JsonPropertyName("linkType")] + + [MergeOption(MergeOption.Ignore)] + + public LinkType LinkType { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.LinkType + content.vb: >- + + + + + + + Public Property LinkType As LinkType + overload: DocFxToTemplate.Models.DocFx.LinkInfo.LinkType* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: linkType + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: linkType + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.LinkId + commentId: P:DocFxToTemplate.Models.DocFx.LinkInfo.LinkId + id: LinkId + parent: DocFxToTemplate.Models.DocFx.LinkInfo + langs: + - csharp + - vb + name: LinkId + nameWithType: LinkInfo.LinkId + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.LinkId + type: Property + source: + id: LinkId + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "linkId")] + + [MergeOption(MergeOption.MergeKey)] + + [JsonPropertyName("linkId")] + + public string LinkId { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + + + Public Property LinkId As String + overload: DocFxToTemplate.Models.DocFx.LinkInfo.LinkId* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: linkId + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 0 + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: linkId +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.CommentId + commentId: P:DocFxToTemplate.Models.DocFx.LinkInfo.CommentId + id: CommentId + parent: DocFxToTemplate.Models.DocFx.LinkInfo + langs: + - csharp + - vb + name: CommentId + nameWithType: LinkInfo.CommentId + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.CommentId + type: Property + source: + id: CommentId + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "commentId")] + + [JsonPropertyName("commentId")] + + [MergeOption(MergeOption.Ignore)] + + public string CommentId { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + + + Public Property CommentId As String + overload: DocFxToTemplate.Models.DocFx.LinkInfo.CommentId* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: commentId + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: commentId + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute.#ctor(DocFxToTemplate.Models.DocFx.Attributes.MergeOption) + arguments: + - type: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + value: 1 +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.AltText + commentId: P:DocFxToTemplate.Models.DocFx.LinkInfo.AltText + id: AltText + parent: DocFxToTemplate.Models.DocFx.LinkInfo + langs: + - csharp + - vb + name: AltText + nameWithType: LinkInfo.AltText + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.AltText + type: Property + source: + id: AltText + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 26 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "altText")] + + [JsonPropertyName("altText")] + + public string AltText { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property AltText As String + overload: DocFxToTemplate.Models.DocFx.LinkInfo.AltText* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: altText + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: altText +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.LinkType* + commentId: Overload:DocFxToTemplate.Models.DocFx.LinkInfo.LinkType + href: DocFxToTemplate.Models.DocFx.LinkInfo.html#DocFxToTemplate_Models_DocFx_LinkInfo_LinkType + name: LinkType + nameWithType: LinkInfo.LinkType + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.LinkType +- uid: DocFxToTemplate.Models.DocFx.LinkType + commentId: T:DocFxToTemplate.Models.DocFx.LinkType + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.LinkType.html + name: LinkType + nameWithType: LinkType + fullName: DocFxToTemplate.Models.DocFx.LinkType +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.LinkId* + commentId: Overload:DocFxToTemplate.Models.DocFx.LinkInfo.LinkId + href: DocFxToTemplate.Models.DocFx.LinkInfo.html#DocFxToTemplate_Models_DocFx_LinkInfo_LinkId + name: LinkId + nameWithType: LinkInfo.LinkId + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.LinkId +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.CommentId* + commentId: Overload:DocFxToTemplate.Models.DocFx.LinkInfo.CommentId + href: DocFxToTemplate.Models.DocFx.LinkInfo.html#DocFxToTemplate_Models_DocFx_LinkInfo_CommentId + name: CommentId + nameWithType: LinkInfo.CommentId + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.CommentId +- uid: DocFxToTemplate.Models.DocFx.LinkInfo.AltText* + commentId: Overload:DocFxToTemplate.Models.DocFx.LinkInfo.AltText + href: DocFxToTemplate.Models.DocFx.LinkInfo.html#DocFxToTemplate_Models_DocFx_LinkInfo_AltText + name: AltText + nameWithType: LinkInfo.AltText + fullName: DocFxToTemplate.Models.DocFx.LinkInfo.AltText diff --git a/api/DocFxToTemplate.Models.DocFx.LinkType.yml b/api/DocFxToTemplate.Models.DocFx.LinkType.yml new file mode 100644 index 0000000..9c850c4 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.LinkType.yml @@ -0,0 +1,108 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.LinkType + commentId: T:DocFxToTemplate.Models.DocFx.LinkType + id: LinkType + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.LinkType.CRef + - DocFxToTemplate.Models.DocFx.LinkType.HRef + langs: + - csharp + - vb + name: LinkType + nameWithType: LinkType + fullName: DocFxToTemplate.Models.DocFx.LinkType + type: Enum + source: + id: LinkType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 36 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public enum LinkType + content.vb: Public Enum LinkType +- uid: DocFxToTemplate.Models.DocFx.LinkType.CRef + commentId: F:DocFxToTemplate.Models.DocFx.LinkType.CRef + id: CRef + parent: DocFxToTemplate.Models.DocFx.LinkType + langs: + - csharp + - vb + name: CRef + nameWithType: LinkType.CRef + fullName: DocFxToTemplate.Models.DocFx.LinkType.CRef + type: Field + source: + id: CRef + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 38 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: CRef = 0 + return: + type: DocFxToTemplate.Models.DocFx.LinkType +- uid: DocFxToTemplate.Models.DocFx.LinkType.HRef + commentId: F:DocFxToTemplate.Models.DocFx.LinkType.HRef + id: HRef + parent: DocFxToTemplate.Models.DocFx.LinkType + langs: + - csharp + - vb + name: HRef + nameWithType: LinkType.HRef + fullName: DocFxToTemplate.Models.DocFx.LinkType.HRef + type: Field + source: + id: HRef + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs + startLine: 39 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: HRef = 1 + return: + type: DocFxToTemplate.Models.DocFx.LinkType +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: DocFxToTemplate.Models.DocFx.LinkType + commentId: T:DocFxToTemplate.Models.DocFx.LinkType + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.LinkType.html + name: LinkType + nameWithType: LinkType + fullName: DocFxToTemplate.Models.DocFx.LinkType diff --git a/api/DocFxToTemplate.Models.DocFx.MarkdownLink.yml b/api/DocFxToTemplate.Models.DocFx.MarkdownLink.yml new file mode 100644 index 0000000..859ddf2 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.MarkdownLink.yml @@ -0,0 +1,480 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink + commentId: T:DocFxToTemplate.Models.DocFx.MarkdownLink + id: MarkdownLink + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor(System.String,System.String) + - DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress + - DocFxToTemplate.Models.DocFx.MarkdownLink.Name + langs: + - csharp + - vb + name: MarkdownLink + nameWithType: MarkdownLink + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink + type: Class + source: + id: MarkdownLink + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 63 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: 'public record MarkdownLink : IEquatable' + content.vb: Public Class MarkdownLink Implements IEquatable(Of MarkdownLink) + inheritance: + - System.Object + implements: + - System.IEquatable{DocFxToTemplate.Models.DocFx.MarkdownLink} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor(System.String,System.String) + commentId: M:DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor(System.String,System.String) + id: '#ctor(System.String,System.String)' + parent: DocFxToTemplate.Models.DocFx.MarkdownLink + langs: + - csharp + - vb + name: MarkdownLink(string, string?) + nameWithType: MarkdownLink.MarkdownLink(string, string?) + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink.MarkdownLink(string, string?) + type: Constructor + source: + id: .ctor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 63 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public MarkdownLink(string Name, string? AbsoluteAddress) + parameters: + - id: Name + type: System.String + - id: AbsoluteAddress + type: System.String + content.vb: Public Sub New(Name As String, AbsoluteAddress As String) + overload: DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor* + nameWithType.vb: MarkdownLink.New(String, String) + fullName.vb: DocFxToTemplate.Models.DocFx.MarkdownLink.New(String, String) + name.vb: New(String, String) +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink.Name + commentId: P:DocFxToTemplate.Models.DocFx.MarkdownLink.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.MarkdownLink + langs: + - csharp + - vb + name: Name + nameWithType: MarkdownLink.Name + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 63 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public string Name { get; init; } + parameters: [] + return: + type: System.String + content.vb: Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.MarkdownLink.Name* +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress + commentId: P:DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress + id: AbsoluteAddress + parent: DocFxToTemplate.Models.DocFx.MarkdownLink + langs: + - csharp + - vb + name: AbsoluteAddress + nameWithType: MarkdownLink.AbsoluteAddress + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress + type: Property + source: + id: AbsoluteAddress + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs + startLine: 63 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public string? AbsoluteAddress { get; init; } + parameters: [] + return: + type: System.String + content.vb: Public Property AbsoluteAddress As String + overload: DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress* +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.IEquatable{DocFxToTemplate.Models.DocFx.MarkdownLink} + commentId: T:System.IEquatable{DocFxToTemplate.Models.DocFx.MarkdownLink} + parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of MarkdownLink) + fullName.vb: System.IEquatable(Of DocFxToTemplate.Models.DocFx.MarkdownLink) + name.vb: IEquatable(Of MarkdownLink) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.MarkdownLink + name: MarkdownLink + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.MarkdownLink + name: MarkdownLink + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor* + commentId: Overload:DocFxToTemplate.Models.DocFx.MarkdownLink.#ctor + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html#DocFxToTemplate_Models_DocFx_MarkdownLink__ctor_System_String_System_String_ + name: MarkdownLink + nameWithType: MarkdownLink.MarkdownLink + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink.MarkdownLink + nameWithType.vb: MarkdownLink.New + fullName.vb: DocFxToTemplate.Models.DocFx.MarkdownLink.New + name.vb: New +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.MarkdownLink.Name + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html#DocFxToTemplate_Models_DocFx_MarkdownLink_Name + name: Name + nameWithType: MarkdownLink.Name + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink.Name +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress* + commentId: Overload:DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html#DocFxToTemplate_Models_DocFx_MarkdownLink_AbsoluteAddress + name: AbsoluteAddress + nameWithType: MarkdownLink.AbsoluteAddress + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink.AbsoluteAddress diff --git a/api/DocFxToTemplate.Models.DocFx.MemberType.yml b/api/DocFxToTemplate.Models.DocFx.MemberType.yml new file mode 100644 index 0000000..fe59a76 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.MemberType.yml @@ -0,0 +1,476 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.MemberType + commentId: T:DocFxToTemplate.Models.DocFx.MemberType + id: MemberType + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.MemberType.Assembly + - DocFxToTemplate.Models.DocFx.MemberType.AttachedEvent + - DocFxToTemplate.Models.DocFx.MemberType.AttachedProperty + - DocFxToTemplate.Models.DocFx.MemberType.Class + - DocFxToTemplate.Models.DocFx.MemberType.Constructor + - DocFxToTemplate.Models.DocFx.MemberType.Container + - DocFxToTemplate.Models.DocFx.MemberType.Default + - DocFxToTemplate.Models.DocFx.MemberType.Delegate + - DocFxToTemplate.Models.DocFx.MemberType.Enum + - DocFxToTemplate.Models.DocFx.MemberType.Event + - DocFxToTemplate.Models.DocFx.MemberType.Field + - DocFxToTemplate.Models.DocFx.MemberType.Interface + - DocFxToTemplate.Models.DocFx.MemberType.Method + - DocFxToTemplate.Models.DocFx.MemberType.Namespace + - DocFxToTemplate.Models.DocFx.MemberType.Operator + - DocFxToTemplate.Models.DocFx.MemberType.Property + - DocFxToTemplate.Models.DocFx.MemberType.Struct + - DocFxToTemplate.Models.DocFx.MemberType.Toc + langs: + - csharp + - vb + name: MemberType + nameWithType: MemberType + fullName: DocFxToTemplate.Models.DocFx.MemberType + type: Enum + source: + id: MemberType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 5 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public enum MemberType + content.vb: Public Enum MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Default + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Default + id: Default + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Default + nameWithType: MemberType.Default + fullName: DocFxToTemplate.Models.DocFx.MemberType.Default + type: Field + source: + id: Default + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 7 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Default = 0 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Toc + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Toc + id: Toc + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Toc + nameWithType: MemberType.Toc + fullName: DocFxToTemplate.Models.DocFx.MemberType.Toc + type: Field + source: + id: Toc + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Toc = 1 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Assembly + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Assembly + id: Assembly + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Assembly + nameWithType: MemberType.Assembly + fullName: DocFxToTemplate.Models.DocFx.MemberType.Assembly + type: Field + source: + id: Assembly + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Assembly = 2 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Namespace + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Namespace + id: Namespace + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Namespace + nameWithType: MemberType.Namespace + fullName: DocFxToTemplate.Models.DocFx.MemberType.Namespace + type: Field + source: + id: Namespace + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Namespace = 3 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Class + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Class + id: Class + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Class + nameWithType: MemberType.Class + fullName: DocFxToTemplate.Models.DocFx.MemberType.Class + type: Field + source: + id: Class + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Class = 4 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Interface + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Interface + id: Interface + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Interface + nameWithType: MemberType.Interface + fullName: DocFxToTemplate.Models.DocFx.MemberType.Interface + type: Field + source: + id: Interface + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 12 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Interface = 5 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Struct + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Struct + id: Struct + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Struct + nameWithType: MemberType.Struct + fullName: DocFxToTemplate.Models.DocFx.MemberType.Struct + type: Field + source: + id: Struct + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 13 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Struct = 6 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Delegate + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Delegate + id: Delegate + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Delegate + nameWithType: MemberType.Delegate + fullName: DocFxToTemplate.Models.DocFx.MemberType.Delegate + type: Field + source: + id: Delegate + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 14 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Delegate = 7 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Enum + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Enum + id: Enum + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Enum + nameWithType: MemberType.Enum + fullName: DocFxToTemplate.Models.DocFx.MemberType.Enum + type: Field + source: + id: Enum + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Enum = 8 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Field + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Field + id: Field + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Field + nameWithType: MemberType.Field + fullName: DocFxToTemplate.Models.DocFx.MemberType.Field + type: Field + source: + id: Field + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Field = 9 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Property + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Property + id: Property + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Property + nameWithType: MemberType.Property + fullName: DocFxToTemplate.Models.DocFx.MemberType.Property + type: Field + source: + id: Property + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 17 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Property = 10 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Event + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Event + id: Event + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Event + nameWithType: MemberType.Event + fullName: DocFxToTemplate.Models.DocFx.MemberType.Event + type: Field + source: + id: Event + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 18 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Event = 11 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Constructor + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Constructor + id: Constructor + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Constructor + nameWithType: MemberType.Constructor + fullName: DocFxToTemplate.Models.DocFx.MemberType.Constructor + type: Field + source: + id: Constructor + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 19 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Constructor = 12 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Method + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Method + id: Method + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Method + nameWithType: MemberType.Method + fullName: DocFxToTemplate.Models.DocFx.MemberType.Method + type: Field + source: + id: Method + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Method = 13 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Operator + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Operator + id: Operator + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Operator + nameWithType: MemberType.Operator + fullName: DocFxToTemplate.Models.DocFx.MemberType.Operator + type: Field + source: + id: Operator + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Operator = 14 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.Container + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.Container + id: Container + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: Container + nameWithType: MemberType.Container + fullName: DocFxToTemplate.Models.DocFx.MemberType.Container + type: Field + source: + id: Container + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 22 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Container = 15 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.AttachedEvent + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.AttachedEvent + id: AttachedEvent + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: AttachedEvent + nameWithType: MemberType.AttachedEvent + fullName: DocFxToTemplate.Models.DocFx.MemberType.AttachedEvent + type: Field + source: + id: AttachedEvent + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 23 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: AttachedEvent = 16 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.MemberType.AttachedProperty + commentId: F:DocFxToTemplate.Models.DocFx.MemberType.AttachedProperty + id: AttachedProperty + parent: DocFxToTemplate.Models.DocFx.MemberType + langs: + - csharp + - vb + name: AttachedProperty + nameWithType: MemberType.AttachedProperty + fullName: DocFxToTemplate.Models.DocFx.MemberType.AttachedProperty + type: Field + source: + id: AttachedProperty + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs + startLine: 24 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: AttachedProperty = 17 + return: + type: DocFxToTemplate.Models.DocFx.MemberType +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: DocFxToTemplate.Models.DocFx.MemberType + commentId: T:DocFxToTemplate.Models.DocFx.MemberType + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.MemberType.html + name: MemberType + nameWithType: MemberType + fullName: DocFxToTemplate.Models.DocFx.MemberType diff --git a/api/DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml b/api/DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml new file mode 100644 index 0000000..85c7d99 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.NamedArgumentInfo.yml @@ -0,0 +1,478 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + commentId: T:DocFxToTemplate.Models.DocFx.NamedArgumentInfo + id: NamedArgumentInfo + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name + - DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type + - DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value + langs: + - csharp + - vb + name: NamedArgumentInfo + nameWithType: NamedArgumentInfo + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + type: Class + source: + id: NamedArgumentInfo + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class NamedArgumentInfo + content.vb: Public Class NamedArgumentInfo + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name + commentId: P:DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + langs: + - csharp + - vb + name: Name + nameWithType: NamedArgumentInfo.Name + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "name")] + + [JsonPropertyName("name")] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: name + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type + commentId: P:DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type + id: Type + parent: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + langs: + - csharp + - vb + name: Type + nameWithType: NamedArgumentInfo.Type + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type + type: Property + source: + id: Type + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "type")] + + [JsonPropertyName("type")] + + public string Type { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Type As String + overload: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: type + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: type +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value + commentId: P:DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value + id: Value + parent: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + langs: + - csharp + - vb + name: Value + nameWithType: NamedArgumentInfo.Value + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value + type: Property + source: + id: Value + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "value")] + + [JsonPropertyName("value")] + + public object Value { get; set; } + parameters: [] + return: + type: System.Object + content.vb: >- + + + + + Public Property Value As Object + overload: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: value + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: value +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name + href: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.html#DocFxToTemplate_Models_DocFx_NamedArgumentInfo_Name + name: Name + nameWithType: NamedArgumentInfo.Name + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type* + commentId: Overload:DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type + href: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.html#DocFxToTemplate_Models_DocFx_NamedArgumentInfo_Type + name: Type + nameWithType: NamedArgumentInfo.Type + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Type +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value* + commentId: Overload:DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value + href: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.html#DocFxToTemplate_Models_DocFx_NamedArgumentInfo_Value + name: Value + nameWithType: NamedArgumentInfo.Value + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.Value diff --git a/api/DocFxToTemplate.Models.DocFx.PageViewModel.yml b/api/DocFxToTemplate.Models.DocFx.PageViewModel.yml new file mode 100644 index 0000000..4440dfe --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.PageViewModel.yml @@ -0,0 +1,732 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.PageViewModel + commentId: T:DocFxToTemplate.Models.DocFx.PageViewModel + id: PageViewModel + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.PageViewModel.Items + - DocFxToTemplate.Models.DocFx.PageViewModel.Metadata + - DocFxToTemplate.Models.DocFx.PageViewModel.References + - DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup + langs: + - csharp + - vb + name: PageViewModel + nameWithType: PageViewModel + fullName: DocFxToTemplate.Models.DocFx.PageViewModel + type: Class + source: + id: PageViewModel + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class PageViewModel + content.vb: Public Class PageViewModel + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.Items + commentId: P:DocFxToTemplate.Models.DocFx.PageViewModel.Items + id: Items + parent: DocFxToTemplate.Models.DocFx.PageViewModel + langs: + - csharp + - vb + name: Items + nameWithType: PageViewModel.Items + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.Items + type: Property + source: + id: Items + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "items")] + + [JsonPropertyName("items")] + + public List Items { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ItemViewModel} + content.vb: >- + + + + + Public Property Items As List(Of ItemViewModel) + overload: DocFxToTemplate.Models.DocFx.PageViewModel.Items* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: items + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: items +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.References + commentId: P:DocFxToTemplate.Models.DocFx.PageViewModel.References + id: References + parent: DocFxToTemplate.Models.DocFx.PageViewModel + langs: + - csharp + - vb + name: References + nameWithType: PageViewModel.References + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.References + type: Property + source: + id: References + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs + startLine: 14 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "references")] + + [JsonPropertyName("references")] + + public List References { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + content.vb: >- + + + + + Public Property References As List(Of ReferenceViewModel) + overload: DocFxToTemplate.Models.DocFx.PageViewModel.References* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: references + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: references +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup + commentId: P:DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup + id: ShouldSkipMarkup + parent: DocFxToTemplate.Models.DocFx.PageViewModel + langs: + - csharp + - vb + name: ShouldSkipMarkup + nameWithType: PageViewModel.ShouldSkipMarkup + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup + type: Property + source: + id: ShouldSkipMarkup + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs + startLine: 18 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "shouldSkipMarkup")] + + [JsonPropertyName("shouldSkipMarkup")] + + public bool ShouldSkipMarkup { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: >- + + + + + Public Property ShouldSkipMarkup As Boolean + overload: DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: shouldSkipMarkup + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: shouldSkipMarkup +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.Metadata + commentId: P:DocFxToTemplate.Models.DocFx.PageViewModel.Metadata + id: Metadata + parent: DocFxToTemplate.Models.DocFx.PageViewModel + langs: + - csharp + - vb + name: Metadata + nameWithType: PageViewModel.Metadata + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.Metadata + type: Property + source: + id: Metadata + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs + startLine: 23 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonExtensionData] + + public Dictionary Metadata { get; set; } + parameters: [] + return: + type: System.Collections.Generic.Dictionary{System.String,System.Object} + content.vb: >- + + + Public Property Metadata As Dictionary(Of String, Object) + overload: DocFxToTemplate.Models.DocFx.PageViewModel.Metadata* + attributes: + - type: System.Text.Json.Serialization.JsonExtensionDataAttribute + ctor: System.Text.Json.Serialization.JsonExtensionDataAttribute.#ctor + arguments: [] +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.Items* + commentId: Overload:DocFxToTemplate.Models.DocFx.PageViewModel.Items + href: DocFxToTemplate.Models.DocFx.PageViewModel.html#DocFxToTemplate_Models_DocFx_PageViewModel_Items + name: Items + nameWithType: PageViewModel.Items + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.Items +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ItemViewModel} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ItemViewModel} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of ItemViewModel) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.ItemViewModel) + name.vb: List(Of ItemViewModel) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.ItemViewModel + name: ItemViewModel + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.ItemViewModel + name: ItemViewModel + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.References* + commentId: Overload:DocFxToTemplate.Models.DocFx.PageViewModel.References + href: DocFxToTemplate.Models.DocFx.PageViewModel.html#DocFxToTemplate_Models_DocFx_PageViewModel_References + name: References + nameWithType: PageViewModel.References + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.References +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ReferenceViewModel} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of ReferenceViewModel) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.ReferenceViewModel) + name.vb: List(Of ReferenceViewModel) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + name: ReferenceViewModel + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + name: ReferenceViewModel + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html + - name: ) +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup* + commentId: Overload:DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup + href: DocFxToTemplate.Models.DocFx.PageViewModel.html#DocFxToTemplate_Models_DocFx_PageViewModel_ShouldSkipMarkup + name: ShouldSkipMarkup + nameWithType: PageViewModel.ShouldSkipMarkup + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.ShouldSkipMarkup +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: DocFxToTemplate.Models.DocFx.PageViewModel.Metadata* + commentId: Overload:DocFxToTemplate.Models.DocFx.PageViewModel.Metadata + href: DocFxToTemplate.Models.DocFx.PageViewModel.html#DocFxToTemplate_Models_DocFx_PageViewModel_Metadata + name: Metadata + nameWithType: PageViewModel.Metadata + fullName: DocFxToTemplate.Models.DocFx.PageViewModel.Metadata +- uid: System.Collections.Generic.Dictionary{System.String,System.Object} + commentId: T:System.Collections.Generic.Dictionary{System.String,System.Object} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of String, Object) + fullName.vb: System.Collections.Generic.Dictionary(Of String, Object) + name.vb: Dictionary(Of String, Object) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) diff --git a/api/DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml b/api/DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml new file mode 100644 index 0000000..ff0828b --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.ReferenceViewModel.yml @@ -0,0 +1,1423 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ReferenceViewModel + id: ReferenceViewModel + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp + - DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid + langs: + - csharp + - vb + name: ReferenceViewModel + nameWithType: ReferenceViewModel + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel + type: Class + source: + id: ReferenceViewModel + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class ReferenceViewModel + content.vb: Public Class ReferenceViewModel + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid + id: Uid + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Uid + nameWithType: ReferenceViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid + type: Property + source: + id: Uid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "uid")] + + [JsonPropertyName("uid")] + + public string Uid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Uid As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: uid + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: uid +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId + id: CommentId + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: CommentId + nameWithType: ReferenceViewModel.CommentId + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId + type: Property + source: + id: CommentId + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "commentId")] + + [JsonPropertyName("commentId")] + + public string CommentId { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property CommentId As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: commentId + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: commentId +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent + id: Parent + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Parent + nameWithType: ReferenceViewModel.Parent + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent + type: Property + source: + id: Parent + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 19 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "parent")] + + [JsonPropertyName("parent")] + + public string Parent { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Parent As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: parent + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: parent +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition + id: Definition + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Definition + nameWithType: ReferenceViewModel.Definition + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition + type: Property + source: + id: Definition + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 23 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "definition")] + + [JsonPropertyName("definition")] + + public string Definition { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Definition As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: definition + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: definition +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal + id: IsExternal + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: IsExternal + nameWithType: ReferenceViewModel.IsExternal + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal + type: Property + source: + id: IsExternal + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 28 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "isExternal")] + + [JsonPropertyName("isExternal")] + + public bool? IsExternal { get; set; } + parameters: [] + return: + type: System.Nullable{System.Boolean} + content.vb: >- + + + + + Public Property IsExternal As Boolean? + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: isExternal + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: isExternal +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href + id: Href + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Href + nameWithType: ReferenceViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href + type: Property + source: + id: Href + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 32 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "href")] + + [JsonPropertyName("href")] + + public string Href { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Href As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: href + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: href +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Name + nameWithType: ReferenceViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 36 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "name")] + + [JsonPropertyName("name")] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: name + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs + id: NameInDevLangs + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: NameInDevLangs + nameWithType: ReferenceViewModel.NameInDevLangs + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs + type: Property + source: + id: NameInDevLangs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 40 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("name.")] + + [JsonIgnore] + + public SortedList NameInDevLangs { get; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property NameInDevLangs As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType + id: NameWithType + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: NameWithType + nameWithType: ReferenceViewModel.NameWithType + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType + type: Property + source: + id: NameWithType + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 44 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "nameWithType")] + + [JsonPropertyName("nameWithType")] + + public string NameWithType { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property NameWithType As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: nameWithType + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: nameWithType +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs + id: NameWithTypeInDevLangs + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: NameWithTypeInDevLangs + nameWithType: ReferenceViewModel.NameWithTypeInDevLangs + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs + type: Property + source: + id: NameWithTypeInDevLangs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 48 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("nameWithType.")] + + [JsonIgnore] + + public SortedList NameWithTypeInDevLangs { get; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property NameWithTypeInDevLangs As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: nameWithType. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName + id: FullName + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: FullName + nameWithType: ReferenceViewModel.FullName + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName + type: Property + source: + id: FullName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 52 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "fullName")] + + [JsonPropertyName("fullName")] + + public string FullName { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property FullName As String + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: fullName + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: fullName +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs + id: FullNameInDevLangs + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: FullNameInDevLangs + nameWithType: ReferenceViewModel.FullNameInDevLangs + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs + type: Property + source: + id: FullNameInDevLangs + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 56 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("fullName.")] + + [JsonIgnore] + + public SortedList FullNameInDevLangs { get; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property FullNameInDevLangs As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: fullName. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp + id: SpecCsharp + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: SpecCsharp + nameWithType: ReferenceViewModel.SpecCsharp + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp + type: Property + source: + id: SpecCsharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 64 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "spec.csharp")] + + public List SpecCsharp { get; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.SpecViewModel} + content.vb: >- + + + Public Property SpecCsharp As List(Of SpecViewModel) + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: spec.csharp +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item + id: Item + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Item + nameWithType: ReferenceViewModel.Item + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item + type: Property + source: + id: Item + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 67 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public ItemViewModel? Item { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ItemViewModel + content.vb: >- + + + + + Public Property Item As ItemViewModel + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional + commentId: P:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional + id: Additional + parent: DocFxToTemplate.Models.DocFx.ReferenceViewModel + langs: + - csharp + - vb + name: Additional + nameWithType: ReferenceViewModel.Additional + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional + type: Property + source: + id: Additional + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs + startLine: 71 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember] + + [JsonIgnore] + + public Dictionary Additional { get; } + parameters: [] + return: + type: System.Collections.Generic.Dictionary{System.String,System.Object} + content.vb: >- + + + + + Public Property Additional As Dictionary(Of String, Object) + overload: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Uid + name: Uid + nameWithType: ReferenceViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Uid +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_CommentId + name: CommentId + nameWithType: ReferenceViewModel.CommentId + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.CommentId +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Parent + name: Parent + nameWithType: ReferenceViewModel.Parent + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Parent +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Definition + name: Definition + nameWithType: ReferenceViewModel.Definition + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Definition +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_IsExternal + name: IsExternal + nameWithType: ReferenceViewModel.IsExternal + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.IsExternal +- uid: System.Nullable{System.Boolean} + commentId: T:System.Nullable{System.Boolean} + parent: System + definition: System.Nullable`1 + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool? + nameWithType: bool? + fullName: bool? + nameWithType.vb: Boolean? + fullName.vb: Boolean? + name.vb: Boolean? + spec.csharp: + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: '?' + spec.vb: + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: '?' +- uid: System.Nullable`1 + commentId: T:System.Nullable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of T) + fullName.vb: System.Nullable(Of T) + name.vb: Nullable(Of T) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Href + name: Href + nameWithType: ReferenceViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Href +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Name + name: Name + nameWithType: ReferenceViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Name +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_NameInDevLangs + name: NameInDevLangs + nameWithType: ReferenceViewModel.NameInDevLangs + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameInDevLangs +- uid: System.Collections.Generic.SortedList{System.String,System.String} + commentId: T:System.Collections.Generic.SortedList{System.String,System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.SortedList`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + name: SortedList + nameWithType: SortedList + fullName: System.Collections.Generic.SortedList + nameWithType.vb: SortedList(Of String, String) + fullName.vb: System.Collections.Generic.SortedList(Of String, String) + name.vb: SortedList(Of String, String) + spec.csharp: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.SortedList`2 + commentId: T:System.Collections.Generic.SortedList`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + name: SortedList + nameWithType: SortedList + fullName: System.Collections.Generic.SortedList + nameWithType.vb: SortedList(Of TKey, TValue) + fullName.vb: System.Collections.Generic.SortedList(Of TKey, TValue) + name.vb: SortedList(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_NameWithType + name: NameWithType + nameWithType: ReferenceViewModel.NameWithType + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithType +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_NameWithTypeInDevLangs + name: NameWithTypeInDevLangs + nameWithType: ReferenceViewModel.NameWithTypeInDevLangs + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.NameWithTypeInDevLangs +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_FullName + name: FullName + nameWithType: ReferenceViewModel.FullName + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullName +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_FullNameInDevLangs + name: FullNameInDevLangs + nameWithType: ReferenceViewModel.FullNameInDevLangs + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.FullNameInDevLangs +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_SpecCsharp + name: SpecCsharp + nameWithType: ReferenceViewModel.SpecCsharp + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.SpecCsharp +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.SpecViewModel} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.SpecViewModel} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of SpecViewModel) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.SpecViewModel) + name.vb: List(Of SpecViewModel) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.SpecViewModel + name: SpecViewModel + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.SpecViewModel + name: SpecViewModel + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Item + name: Item + nameWithType: ReferenceViewModel.Item + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Item +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ItemViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + name: ItemViewModel + nameWithType: ItemViewModel + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional* + commentId: Overload:DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html#DocFxToTemplate_Models_DocFx_ReferenceViewModel_Additional + name: Additional + nameWithType: ReferenceViewModel.Additional + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel.Additional +- uid: System.Collections.Generic.Dictionary{System.String,System.Object} + commentId: T:System.Collections.Generic.Dictionary{System.String,System.Object} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of String, Object) + fullName.vb: System.Collections.Generic.Dictionary(Of String, Object) + name.vb: Dictionary(Of String, Object) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) diff --git a/api/DocFxToTemplate.Models.DocFx.SourceDetail.yml b/api/DocFxToTemplate.Models.DocFx.SourceDetail.yml new file mode 100644 index 0000000..155d807 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.SourceDetail.yml @@ -0,0 +1,665 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.SourceDetail + commentId: T:DocFxToTemplate.Models.DocFx.SourceDetail + id: SourceDetail + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.SourceDetail.EndLine + - DocFxToTemplate.Models.DocFx.SourceDetail.Href + - DocFxToTemplate.Models.DocFx.SourceDetail.Name + - DocFxToTemplate.Models.DocFx.SourceDetail.Path + - DocFxToTemplate.Models.DocFx.SourceDetail.Remote + - DocFxToTemplate.Models.DocFx.SourceDetail.StartLine + langs: + - csharp + - vb + name: SourceDetail + nameWithType: SourceDetail + fullName: DocFxToTemplate.Models.DocFx.SourceDetail + type: Class + source: + id: SourceDetail + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class SourceDetail + content.vb: Public Class SourceDetail + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Remote + commentId: P:DocFxToTemplate.Models.DocFx.SourceDetail.Remote + id: Remote + parent: DocFxToTemplate.Models.DocFx.SourceDetail + langs: + - csharp + - vb + name: Remote + nameWithType: SourceDetail.Remote + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Remote + type: Property + source: + id: Remote + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "remote")] + + [JsonPropertyName("remote")] + + public GitDetail Remote { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.GitDetail + content.vb: >- + + + + + Public Property Remote As GitDetail + overload: DocFxToTemplate.Models.DocFx.SourceDetail.Remote* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: remote + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: remote +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Name + commentId: P:DocFxToTemplate.Models.DocFx.SourceDetail.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.SourceDetail + langs: + - csharp + - vb + name: Name + nameWithType: SourceDetail.Name + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 14 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "id")] + + [JsonPropertyName("id")] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.SourceDetail.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: id + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: id +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Href + commentId: P:DocFxToTemplate.Models.DocFx.SourceDetail.Href + id: Href + parent: DocFxToTemplate.Models.DocFx.SourceDetail + langs: + - csharp + - vb + name: Href + nameWithType: SourceDetail.Href + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Href + type: Property + source: + id: Href + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 21 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: The url path for current source, should be resolved at some late stage + example: [] + syntax: + content: >- + [YamlMember(Alias = "href")] + + [JsonPropertyName("href")] + + public string Href { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Href As String + overload: DocFxToTemplate.Models.DocFx.SourceDetail.Href* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: href + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: href +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Path + commentId: P:DocFxToTemplate.Models.DocFx.SourceDetail.Path + id: Path + parent: DocFxToTemplate.Models.DocFx.SourceDetail + langs: + - csharp + - vb + name: Path + nameWithType: SourceDetail.Path + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Path + type: Property + source: + id: Path + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 28 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: The local path for current source, should be resolved to be relative path at some late stage + example: [] + syntax: + content: >- + [YamlMember(Alias = "path")] + + [JsonPropertyName("path")] + + public string Path { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Path As String + overload: DocFxToTemplate.Models.DocFx.SourceDetail.Path* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: path + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: path +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.StartLine + commentId: P:DocFxToTemplate.Models.DocFx.SourceDetail.StartLine + id: StartLine + parent: DocFxToTemplate.Models.DocFx.SourceDetail + langs: + - csharp + - vb + name: StartLine + nameWithType: SourceDetail.StartLine + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.StartLine + type: Property + source: + id: StartLine + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 32 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "startLine")] + + [JsonPropertyName("startLine")] + + public int StartLine { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: >- + + + + + Public Property StartLine As Integer + overload: DocFxToTemplate.Models.DocFx.SourceDetail.StartLine* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: startLine + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: startLine +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.EndLine + commentId: P:DocFxToTemplate.Models.DocFx.SourceDetail.EndLine + id: EndLine + parent: DocFxToTemplate.Models.DocFx.SourceDetail + langs: + - csharp + - vb + name: EndLine + nameWithType: SourceDetail.EndLine + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.EndLine + type: Property + source: + id: EndLine + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs + startLine: 36 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "endLine")] + + [JsonPropertyName("endLine")] + + public int EndLine { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: >- + + + + + Public Property EndLine As Integer + overload: DocFxToTemplate.Models.DocFx.SourceDetail.EndLine* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: endLine + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: endLine +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Remote* + commentId: Overload:DocFxToTemplate.Models.DocFx.SourceDetail.Remote + href: DocFxToTemplate.Models.DocFx.SourceDetail.html#DocFxToTemplate_Models_DocFx_SourceDetail_Remote + name: Remote + nameWithType: SourceDetail.Remote + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Remote +- uid: DocFxToTemplate.Models.DocFx.GitDetail + commentId: T:DocFxToTemplate.Models.DocFx.GitDetail + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.GitDetail.html + name: GitDetail + nameWithType: GitDetail + fullName: DocFxToTemplate.Models.DocFx.GitDetail +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.SourceDetail.Name + href: DocFxToTemplate.Models.DocFx.SourceDetail.html#DocFxToTemplate_Models_DocFx_SourceDetail_Name + name: Name + nameWithType: SourceDetail.Name + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Name +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Href* + commentId: Overload:DocFxToTemplate.Models.DocFx.SourceDetail.Href + href: DocFxToTemplate.Models.DocFx.SourceDetail.html#DocFxToTemplate_Models_DocFx_SourceDetail_Href + name: Href + nameWithType: SourceDetail.Href + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Href +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.Path* + commentId: Overload:DocFxToTemplate.Models.DocFx.SourceDetail.Path + href: DocFxToTemplate.Models.DocFx.SourceDetail.html#DocFxToTemplate_Models_DocFx_SourceDetail_Path + name: Path + nameWithType: SourceDetail.Path + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.Path +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.StartLine* + commentId: Overload:DocFxToTemplate.Models.DocFx.SourceDetail.StartLine + href: DocFxToTemplate.Models.DocFx.SourceDetail.html#DocFxToTemplate_Models_DocFx_SourceDetail_StartLine + name: StartLine + nameWithType: SourceDetail.StartLine + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.StartLine +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: DocFxToTemplate.Models.DocFx.SourceDetail.EndLine* + commentId: Overload:DocFxToTemplate.Models.DocFx.SourceDetail.EndLine + href: DocFxToTemplate.Models.DocFx.SourceDetail.html#DocFxToTemplate_Models_DocFx_SourceDetail_EndLine + name: EndLine + nameWithType: SourceDetail.EndLine + fullName: DocFxToTemplate.Models.DocFx.SourceDetail.EndLine diff --git a/api/DocFxToTemplate.Models.DocFx.SpecViewModel.yml b/api/DocFxToTemplate.Models.DocFx.SpecViewModel.yml new file mode 100644 index 0000000..50495cf --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.SpecViewModel.yml @@ -0,0 +1,600 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel + commentId: T:DocFxToTemplate.Models.DocFx.SpecViewModel + id: SpecViewModel + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.SpecViewModel.Href + - DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal + - DocFxToTemplate.Models.DocFx.SpecViewModel.Item + - DocFxToTemplate.Models.DocFx.SpecViewModel.Name + - DocFxToTemplate.Models.DocFx.SpecViewModel.Uid + langs: + - csharp + - vb + name: SpecViewModel + nameWithType: SpecViewModel + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel + type: Class + source: + id: SpecViewModel + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class SpecViewModel + content.vb: Public Class SpecViewModel + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Uid + commentId: P:DocFxToTemplate.Models.DocFx.SpecViewModel.Uid + id: Uid + parent: DocFxToTemplate.Models.DocFx.SpecViewModel + langs: + - csharp + - vb + name: Uid + nameWithType: SpecViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Uid + type: Property + source: + id: Uid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "uid")] + + [JsonPropertyName("uid")] + + public string Uid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Uid As String + overload: DocFxToTemplate.Models.DocFx.SpecViewModel.Uid* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: uid + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: uid +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Name + commentId: P:DocFxToTemplate.Models.DocFx.SpecViewModel.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.SpecViewModel + langs: + - csharp + - vb + name: Name + nameWithType: SpecViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs + startLine: 14 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "name")] + + [JsonPropertyName("name")] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.SpecViewModel.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: name + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal + commentId: P:DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal + id: IsExternal + parent: DocFxToTemplate.Models.DocFx.SpecViewModel + langs: + - csharp + - vb + name: IsExternal + nameWithType: SpecViewModel.IsExternal + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal + type: Property + source: + id: IsExternal + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs + startLine: 18 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "isExternal")] + + [JsonPropertyName("isExternal")] + + public bool IsExternal { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: >- + + + + + Public Property IsExternal As Boolean + overload: DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: isExternal + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: isExternal +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Href + commentId: P:DocFxToTemplate.Models.DocFx.SpecViewModel.Href + id: Href + parent: DocFxToTemplate.Models.DocFx.SpecViewModel + langs: + - csharp + - vb + name: Href + nameWithType: SpecViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Href + type: Property + source: + id: Href + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs + startLine: 22 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "href")] + + [JsonPropertyName("href")] + + public string Href { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Href As String + overload: DocFxToTemplate.Models.DocFx.SpecViewModel.Href* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: href + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: href +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Item + commentId: P:DocFxToTemplate.Models.DocFx.SpecViewModel.Item + id: Item + parent: DocFxToTemplate.Models.DocFx.SpecViewModel + langs: + - csharp + - vb + name: Item + nameWithType: SpecViewModel.Item + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Item + type: Property + source: + id: Item + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs + startLine: 26 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [JsonIgnore] + + [YamlIgnore] + + public ItemViewModel? Item { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ItemViewModel + content.vb: >- + + + + + Public Property Item As ItemViewModel + overload: DocFxToTemplate.Models.DocFx.SpecViewModel.Item* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Uid* + commentId: Overload:DocFxToTemplate.Models.DocFx.SpecViewModel.Uid + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html#DocFxToTemplate_Models_DocFx_SpecViewModel_Uid + name: Uid + nameWithType: SpecViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Uid +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.SpecViewModel.Name + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html#DocFxToTemplate_Models_DocFx_SpecViewModel_Name + name: Name + nameWithType: SpecViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Name +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal* + commentId: Overload:DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html#DocFxToTemplate_Models_DocFx_SpecViewModel_IsExternal + name: IsExternal + nameWithType: SpecViewModel.IsExternal + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.IsExternal +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Href* + commentId: Overload:DocFxToTemplate.Models.DocFx.SpecViewModel.Href + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html#DocFxToTemplate_Models_DocFx_SpecViewModel_Href + name: Href + nameWithType: SpecViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Href +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel.Item* + commentId: Overload:DocFxToTemplate.Models.DocFx.SpecViewModel.Item + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html#DocFxToTemplate_Models_DocFx_SpecViewModel_Item + name: Item + nameWithType: SpecViewModel.Item + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel.Item +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ItemViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + name: ItemViewModel + nameWithType: ItemViewModel + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel diff --git a/api/DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml b/api/DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml new file mode 100644 index 0000000..2c43f0b --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.yml @@ -0,0 +1,868 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + commentId: T:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + id: SyntaxDetailViewModel + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters + langs: + - csharp + - vb + name: SyntaxDetailViewModel + nameWithType: SyntaxDetailViewModel + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + type: Class + source: + id: SyntaxDetailViewModel + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class SyntaxDetailViewModel + content.vb: Public Class SyntaxDetailViewModel + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content + id: Content + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: Content + nameWithType: SyntaxDetailViewModel.Content + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content + type: Property + source: + id: Content + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 11 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "content")] + + [JsonPropertyName("content")] + + public string Content { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Content As String + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: content + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: content +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents + id: Contents + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: Contents + nameWithType: SyntaxDetailViewModel.Contents + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents + type: Property + source: + id: Contents + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember("content.")] + + [JsonIgnore] + + public SortedList Contents { get; set; } + parameters: [] + return: + type: System.Collections.Generic.SortedList{System.String,System.String} + content.vb: >- + + + + + Public Property Contents As SortedList(Of String, String) + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor(System.String) + arguments: + - type: System.String + value: content. + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp + id: ContentForCSharp + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: ContentForCSharp + nameWithType: SyntaxDetailViewModel.ContentForCSharp + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp + type: Property + source: + id: ContentForCSharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 19 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string ContentForCSharp { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property ContentForCSharp As String + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB + id: ContentForVB + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: ContentForVB + nameWithType: SyntaxDetailViewModel.ContentForVB + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB + type: Property + source: + id: ContentForVB + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 37 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string ContentForVB { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property ContentForVB As String + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters + id: Parameters + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: Parameters + nameWithType: SyntaxDetailViewModel.Parameters + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters + type: Property + source: + id: Parameters + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 55 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "parameters")] + + [JsonPropertyName("parameters")] + + public List? Parameters { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ApiParameter} + content.vb: >- + + + + + Public Property Parameters As List(Of ApiParameter) + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: parameters + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: parameters +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters + id: TypeParameters + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: TypeParameters + nameWithType: SyntaxDetailViewModel.TypeParameters + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters + type: Property + source: + id: TypeParameters + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 59 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "typeParameters")] + + [JsonPropertyName("typeParameters")] + + public List? TypeParameters { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ApiParameter} + content.vb: >- + + + + + Public Property TypeParameters As List(Of ApiParameter) + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: typeParameters + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: typeParameters +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return + commentId: P:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return + id: Return + parent: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + langs: + - csharp + - vb + name: Return + nameWithType: SyntaxDetailViewModel.Return + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return + type: Property + source: + id: Return + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs + startLine: 63 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "return")] + + [JsonPropertyName("return")] + + public ApiParameter? Return { get; set; } + parameters: [] + return: + type: DocFxToTemplate.Models.DocFx.ApiParameter + content.vb: >- + + + + + Public Property [Return] As ApiParameter + overload: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: return + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: return +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_Content + name: Content + nameWithType: SyntaxDetailViewModel.Content + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Content +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_Contents + name: Contents + nameWithType: SyntaxDetailViewModel.Contents + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Contents +- uid: System.Collections.Generic.SortedList{System.String,System.String} + commentId: T:System.Collections.Generic.SortedList{System.String,System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.SortedList`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + name: SortedList + nameWithType: SortedList + fullName: System.Collections.Generic.SortedList + nameWithType.vb: SortedList(Of String, String) + fullName.vb: System.Collections.Generic.SortedList(Of String, String) + name.vb: SortedList(Of String, String) + spec.csharp: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.SortedList`2 + commentId: T:System.Collections.Generic.SortedList`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + name: SortedList + nameWithType: SortedList + fullName: System.Collections.Generic.SortedList + nameWithType.vb: SortedList(Of TKey, TValue) + fullName.vb: System.Collections.Generic.SortedList(Of TKey, TValue) + name.vb: SortedList(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.SortedList`2 + name: SortedList + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_ContentForCSharp + name: ContentForCSharp + nameWithType: SyntaxDetailViewModel.ContentForCSharp + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForCSharp +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_ContentForVB + name: ContentForVB + nameWithType: SyntaxDetailViewModel.ContentForVB + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.ContentForVB +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_Parameters + name: Parameters + nameWithType: SyntaxDetailViewModel.Parameters + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Parameters +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ApiParameter} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.ApiParameter} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of ApiParameter) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.ApiParameter) + name.vb: List(Of ApiParameter) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.ApiParameter + name: ApiParameter + href: DocFxToTemplate.Models.DocFx.ApiParameter.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.ApiParameter + name: ApiParameter + href: DocFxToTemplate.Models.DocFx.ApiParameter.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_TypeParameters + name: TypeParameters + nameWithType: SyntaxDetailViewModel.TypeParameters + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.TypeParameters +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return* + commentId: Overload:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html#DocFxToTemplate_Models_DocFx_SyntaxDetailViewModel_Return + name: Return + nameWithType: SyntaxDetailViewModel.Return + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.Return +- uid: DocFxToTemplate.Models.DocFx.ApiParameter + commentId: T:DocFxToTemplate.Models.DocFx.ApiParameter + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ApiParameter.html + name: ApiParameter + nameWithType: ApiParameter + fullName: DocFxToTemplate.Models.DocFx.ApiParameter diff --git a/api/DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml b/api/DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml new file mode 100644 index 0000000..3207a48 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.SyntaxLanguage.yml @@ -0,0 +1,131 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage + commentId: T:DocFxToTemplate.Models.DocFx.SyntaxLanguage + id: SyntaxLanguage + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.SyntaxLanguage.CSharp + - DocFxToTemplate.Models.DocFx.SyntaxLanguage.Default + - DocFxToTemplate.Models.DocFx.SyntaxLanguage.VB + langs: + - csharp + - vb + name: SyntaxLanguage + nameWithType: SyntaxLanguage + fullName: DocFxToTemplate.Models.DocFx.SyntaxLanguage + type: Enum + source: + id: SyntaxLanguage + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs + startLine: 5 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public enum SyntaxLanguage + content.vb: Public Enum SyntaxLanguage +- uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage.Default + commentId: F:DocFxToTemplate.Models.DocFx.SyntaxLanguage.Default + id: Default + parent: DocFxToTemplate.Models.DocFx.SyntaxLanguage + langs: + - csharp + - vb + name: Default + nameWithType: SyntaxLanguage.Default + fullName: DocFxToTemplate.Models.DocFx.SyntaxLanguage.Default + type: Field + source: + id: Default + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs + startLine: 7 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: Default = 0 + return: + type: DocFxToTemplate.Models.DocFx.SyntaxLanguage +- uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage.CSharp + commentId: F:DocFxToTemplate.Models.DocFx.SyntaxLanguage.CSharp + id: CSharp + parent: DocFxToTemplate.Models.DocFx.SyntaxLanguage + langs: + - csharp + - vb + name: CSharp + nameWithType: SyntaxLanguage.CSharp + fullName: DocFxToTemplate.Models.DocFx.SyntaxLanguage.CSharp + type: Field + source: + id: CSharp + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs + startLine: 8 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: CSharp = 1 + return: + type: DocFxToTemplate.Models.DocFx.SyntaxLanguage +- uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage.VB + commentId: F:DocFxToTemplate.Models.DocFx.SyntaxLanguage.VB + id: VB + parent: DocFxToTemplate.Models.DocFx.SyntaxLanguage + langs: + - csharp + - vb + name: VB + nameWithType: SyntaxLanguage.VB + fullName: DocFxToTemplate.Models.DocFx.SyntaxLanguage.VB + type: Field + source: + id: VB + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs + startLine: 9 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: VB = 2 + return: + type: DocFxToTemplate.Models.DocFx.SyntaxLanguage +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage + commentId: T:DocFxToTemplate.Models.DocFx.SyntaxLanguage + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.SyntaxLanguage.html + name: SyntaxLanguage + nameWithType: SyntaxLanguage + fullName: DocFxToTemplate.Models.DocFx.SyntaxLanguage diff --git a/api/DocFxToTemplate.Models.DocFx.TocItemViewModel.yml b/api/DocFxToTemplate.Models.DocFx.TocItemViewModel.yml new file mode 100644 index 0000000..9ee1e74 --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.TocItemViewModel.yml @@ -0,0 +1,1702 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.TocItemViewModel + id: TocItemViewModel + parent: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref + - DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone + - DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage + - DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Href + - DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom + - DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Items + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Name + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Order + - DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage + - DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref + - DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref + - DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref + - DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString + - DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref + - DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref + - DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid + - DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid + langs: + - csharp + - vb + name: TocItemViewModel + nameWithType: TocItemViewModel + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel + type: Class + source: + id: TocItemViewModel + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public class TocItemViewModel + content.vb: Public Class TocItemViewModel + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid + id: Uid + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Uid + nameWithType: TocItemViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid + type: Property + source: + id: Uid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 12 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "uid")] + + [JsonPropertyName("uid")] + + public string Uid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Uid As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: uid + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: uid +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Name + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Name + id: Name + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Name + nameWithType: TocItemViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Name + type: Property + source: + id: Name + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 16 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "name")] + + [JsonPropertyName("name")] + + public string Name { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Name As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Name* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: name + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: name +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName + id: DisplayName + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: DisplayName + nameWithType: TocItemViewModel.DisplayName + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName + type: Property + source: + id: DisplayName + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "displayName")] + + [JsonPropertyName("displayName")] + + public string DisplayName { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property DisplayName As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: displayName + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: displayName +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Href + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Href + id: Href + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Href + nameWithType: TocItemViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Href + type: Property + source: + id: Href + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 24 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "href")] + + [JsonPropertyName("href")] + + public string Href { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Href As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Href* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: href + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: href +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref + id: OriginalHref + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: OriginalHref + nameWithType: TocItemViewModel.OriginalHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref + type: Property + source: + id: OriginalHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 28 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "originalHref")] + + [JsonPropertyName("originalHref")] + + public string OriginalHref { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property OriginalHref As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: originalHref + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: originalHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref + id: TocHref + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: TocHref + nameWithType: TocItemViewModel.TocHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref + type: Property + source: + id: TocHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 32 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "tocHref")] + + [JsonPropertyName("tocHref")] + + public string TocHref { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property TocHref As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: tocHref + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: tocHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref + id: OriginalTocHref + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: OriginalTocHref + nameWithType: TocItemViewModel.OriginalTocHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref + type: Property + source: + id: OriginalTocHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 36 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "originalTocHref")] + + [JsonPropertyName("originalTocHref")] + + public string OriginalTocHref { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property OriginalTocHref As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: originalTocHref + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: originalTocHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref + id: TopicHref + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: TopicHref + nameWithType: TocItemViewModel.TopicHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref + type: Property + source: + id: TopicHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 40 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "topicHref")] + + [JsonPropertyName("topicHref")] + + public string TopicHref { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property TopicHref As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: topicHref + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: topicHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref + id: OriginalTopicHref + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: OriginalTopicHref + nameWithType: TocItemViewModel.OriginalTopicHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref + type: Property + source: + id: OriginalTopicHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 44 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "originalTopicHref")] + + [JsonPropertyName("originalTopicHref")] + + public string OriginalTopicHref { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property OriginalTopicHref As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: originalTopicHref + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: originalTopicHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref + id: AggregatedHref + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: AggregatedHref + nameWithType: TocItemViewModel.AggregatedHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref + type: Property + source: + id: AggregatedHref + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 48 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string AggregatedHref { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property AggregatedHref As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom + id: IncludedFrom + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: IncludedFrom + nameWithType: TocItemViewModel.IncludedFrom + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom + type: Property + source: + id: IncludedFrom + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 50 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "includedFrom")] + + [JsonPropertyName("includedFrom")] + + public string IncludedFrom { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property IncludedFrom As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: includedFrom + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: includedFrom +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage + id: Homepage + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Homepage + nameWithType: TocItemViewModel.Homepage + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage + type: Property + source: + id: Homepage + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 54 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "homepage")] + + [JsonPropertyName("homepage")] + + public string Homepage { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property Homepage As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: homepage + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: homepage +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage + id: OriginalHomepage + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: OriginalHomepage + nameWithType: TocItemViewModel.OriginalHomepage + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage + type: Property + source: + id: OriginalHomepage + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 58 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "originalHomepage")] + + [JsonPropertyName("originalHomepage")] + + public string OriginalHomepage { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property OriginalHomepage As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: originalHomepage + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: originalHomepage +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid + id: HomepageUid + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: HomepageUid + nameWithType: TocItemViewModel.HomepageUid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid + type: Property + source: + id: HomepageUid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 62 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "homepageUid")] + + [JsonPropertyName("homepageUid")] + + public string HomepageUid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property HomepageUid As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: homepageUid + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: homepageUid +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid + id: TopicUid + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: TopicUid + nameWithType: TocItemViewModel.TopicUid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid + type: Property + source: + id: TopicUid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 66 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "topicUid")] + + [JsonPropertyName("topicUid")] + + public string TopicUid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property TopicUid As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: topicUid + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: topicUid +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Order + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Order + id: Order + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Order + nameWithType: TocItemViewModel.Order + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Order + type: Property + source: + id: Order + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 70 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "order")] + + [JsonPropertyName("order")] + + public int? Order { get; set; } + parameters: [] + return: + type: System.Nullable{System.Int32} + content.vb: >- + + + + + Public Property Order As Integer? + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Order* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: order + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: order +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid + id: AggregatedUid + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: AggregatedUid + nameWithType: TocItemViewModel.AggregatedUid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid + type: Property + source: + id: AggregatedUid + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 74 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public string AggregatedUid { get; set; } + parameters: [] + return: + type: System.String + content.vb: >- + + + + + Public Property AggregatedUid As String + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Items + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Items + id: Items + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Items + nameWithType: TocItemViewModel.Items + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Items + type: Property + source: + id: Items + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 76 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlMember(Alias = "items")] + + [JsonPropertyName("items")] + + public List Items { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.TocItemViewModel} + content.vb: >- + + + + + Public Property Items As List(Of TocItemViewModel) + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Items* + attributes: + - type: YamlDotNet.Serialization.YamlMemberAttribute + ctor: YamlDotNet.Serialization.YamlMemberAttribute.#ctor + arguments: [] + namedArguments: + - name: Alias + type: System.String + value: items + - type: System.Text.Json.Serialization.JsonPropertyNameAttribute + ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String) + arguments: + - type: System.String + value: items +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated + id: IsHrefUpdated + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: IsHrefUpdated + nameWithType: TocItemViewModel.IsHrefUpdated + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated + type: Property + source: + id: IsHrefUpdated + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 80 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [YamlIgnore] + + [JsonIgnore] + + public bool IsHrefUpdated { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: >- + + + + + Public Property IsHrefUpdated As Boolean + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated* + attributes: + - type: YamlDotNet.Serialization.YamlIgnoreAttribute + ctor: YamlDotNet.Serialization.YamlIgnoreAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata + commentId: P:DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata + id: Metadata + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Metadata + nameWithType: TocItemViewModel.Metadata + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata + type: Property + source: + id: Metadata + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 82 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: >- + [ExtensibleMember] + + [JsonIgnore] + + public Dictionary Metadata { get; set; } + parameters: [] + return: + type: System.Collections.Generic.Dictionary{System.String,System.Object} + content.vb: >- + + + + + Public Property Metadata As Dictionary(Of String, Object) + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata* + attributes: + - type: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + ctor: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute.#ctor + arguments: [] + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone + commentId: M:DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone + id: Clone + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: Clone() + nameWithType: TocItemViewModel.Clone() + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone() + type: Method + source: + id: Clone + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 89 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + syntax: + content: public TocItemViewModel Clone() + return: + type: DocFxToTemplate.Models.DocFx.TocItemViewModel + content.vb: Public Function Clone() As TocItemViewModel + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone* +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString + commentId: M:DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString + id: ToString + parent: DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: ToString() + nameWithType: TocItemViewModel.ToString() + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString() + type: Method + source: + id: ToString + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs + startLine: 96 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Models.DocFx + summary: Returns a string that represents the current object. + example: [] + syntax: + content: public override string ToString() + return: + type: System.String + description: A string that represents the current object. + content.vb: Public Overrides Function ToString() As String + overridden: System.Object.ToString + overload: DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString* +references: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Uid + name: Uid + nameWithType: TocItemViewModel.Uid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Uid +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Name* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Name + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Name + name: Name + nameWithType: TocItemViewModel.Name + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Name +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_DisplayName + name: DisplayName + nameWithType: TocItemViewModel.DisplayName + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.DisplayName +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Href* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Href + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Href + name: Href + nameWithType: TocItemViewModel.Href + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Href +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_OriginalHref + name: OriginalHref + nameWithType: TocItemViewModel.OriginalHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_TocHref + name: TocHref + nameWithType: TocItemViewModel.TocHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.TocHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_OriginalTocHref + name: OriginalTocHref + nameWithType: TocItemViewModel.OriginalTocHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTocHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_TopicHref + name: TopicHref + nameWithType: TocItemViewModel.TopicHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_OriginalTopicHref + name: OriginalTopicHref + nameWithType: TocItemViewModel.OriginalTopicHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalTopicHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_AggregatedHref + name: AggregatedHref + nameWithType: TocItemViewModel.AggregatedHref + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedHref +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_IncludedFrom + name: IncludedFrom + nameWithType: TocItemViewModel.IncludedFrom + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.IncludedFrom +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Homepage + name: Homepage + nameWithType: TocItemViewModel.Homepage + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Homepage +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_OriginalHomepage + name: OriginalHomepage + nameWithType: TocItemViewModel.OriginalHomepage + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.OriginalHomepage +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_HomepageUid + name: HomepageUid + nameWithType: TocItemViewModel.HomepageUid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.HomepageUid +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_TopicUid + name: TopicUid + nameWithType: TocItemViewModel.TopicUid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.TopicUid +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Order* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Order + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Order + name: Order + nameWithType: TocItemViewModel.Order + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Order +- uid: System.Nullable{System.Int32} + commentId: T:System.Nullable{System.Int32} + parent: System + definition: System.Nullable`1 + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int? + nameWithType: int? + fullName: int? + nameWithType.vb: Integer? + fullName.vb: Integer? + name.vb: Integer? + spec.csharp: + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '?' + spec.vb: + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: '?' +- uid: System.Nullable`1 + commentId: T:System.Nullable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of T) + fullName.vb: System.Nullable(Of T) + name.vb: Nullable(Of T) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.nullable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_AggregatedUid + name: AggregatedUid + nameWithType: TocItemViewModel.AggregatedUid + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.AggregatedUid +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Items* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Items + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Items + name: Items + nameWithType: TocItemViewModel.Items + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Items +- uid: System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.TocItemViewModel} + commentId: T:System.Collections.Generic.List{DocFxToTemplate.Models.DocFx.TocItemViewModel} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of TocItemViewModel) + fullName.vb: System.Collections.Generic.List(Of DocFxToTemplate.Models.DocFx.TocItemViewModel) + name.vb: List(Of TocItemViewModel) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: DocFxToTemplate.Models.DocFx.TocItemViewModel + name: TocItemViewModel + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: DocFxToTemplate.Models.DocFx.TocItemViewModel + name: TocItemViewModel + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_IsHrefUpdated + name: IsHrefUpdated + nameWithType: TocItemViewModel.IsHrefUpdated + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.IsHrefUpdated +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Metadata + name: Metadata + nameWithType: TocItemViewModel.Metadata + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Metadata +- uid: System.Collections.Generic.Dictionary{System.String,System.Object} + commentId: T:System.Collections.Generic.Dictionary{System.String,System.Object} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of String, Object) + fullName.vb: System.Collections.Generic.Dictionary(Of String, Object) + name.vb: Dictionary(Of String, Object) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_Clone + name: Clone + nameWithType: TocItemViewModel.Clone + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.Clone +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.TocItemViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html + name: TocItemViewModel + nameWithType: TocItemViewModel + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString* + commentId: Overload:DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html#DocFxToTemplate_Models_DocFx_TocItemViewModel_ToString + name: ToString + nameWithType: TocItemViewModel.ToString + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel.ToString diff --git a/api/DocFxToTemplate.Models.DocFx.yml b/api/DocFxToTemplate.Models.DocFx.yml new file mode 100644 index 0000000..28bf5af --- /dev/null +++ b/api/DocFxToTemplate.Models.DocFx.yml @@ -0,0 +1,414 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + id: DocFxToTemplate.Models.DocFx + children: + - DocFxToTemplate.Models.DocFx.AdditionalNotes + - DocFxToTemplate.Models.DocFx.ApiParameter + - DocFxToTemplate.Models.DocFx.ArgumentInfo + - DocFxToTemplate.Models.DocFx.AttributeInfo + - DocFxToTemplate.Models.DocFx.CompositeDictionary + - DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + - DocFxToTemplate.Models.DocFx.Constants + - DocFxToTemplate.Models.DocFx.Constants.DevLang + - DocFxToTemplate.Models.DocFx.Constants.DocumentType + - DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + - DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + - DocFxToTemplate.Models.DocFx.Constants.MetadataName + - DocFxToTemplate.Models.DocFx.Constants.PropertyName + - DocFxToTemplate.Models.DocFx.Constants.Switches + - DocFxToTemplate.Models.DocFx.Constants.TableOfContents + - DocFxToTemplate.Models.DocFx.ExceptionInfo + - DocFxToTemplate.Models.DocFx.GitDetail + - DocFxToTemplate.Models.DocFx.ItemViewModel + - DocFxToTemplate.Models.DocFx.LinkInfo + - DocFxToTemplate.Models.DocFx.LinkType + - DocFxToTemplate.Models.DocFx.MarkdownLink + - DocFxToTemplate.Models.DocFx.MemberType + - DocFxToTemplate.Models.DocFx.NamedArgumentInfo + - DocFxToTemplate.Models.DocFx.PageViewModel + - DocFxToTemplate.Models.DocFx.ReferenceViewModel + - DocFxToTemplate.Models.DocFx.SourceDetail + - DocFxToTemplate.Models.DocFx.SpecViewModel + - DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + - DocFxToTemplate.Models.DocFx.SyntaxLanguage + - DocFxToTemplate.Models.DocFx.TocItemViewModel + langs: + - csharp + - vb + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + type: Namespace + assemblies: + - DocFxToTemplate +references: +- uid: DocFxToTemplate.Models.DocFx.AdditionalNotes + commentId: T:DocFxToTemplate.Models.DocFx.AdditionalNotes + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.AdditionalNotes.html + name: AdditionalNotes + nameWithType: AdditionalNotes + fullName: DocFxToTemplate.Models.DocFx.AdditionalNotes +- uid: DocFxToTemplate.Models.DocFx.ApiParameter + commentId: T:DocFxToTemplate.Models.DocFx.ApiParameter + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ApiParameter.html + name: ApiParameter + nameWithType: ApiParameter + fullName: DocFxToTemplate.Models.DocFx.ApiParameter +- uid: DocFxToTemplate.Models.DocFx.ArgumentInfo + commentId: T:DocFxToTemplate.Models.DocFx.ArgumentInfo + href: DocFxToTemplate.Models.DocFx.ArgumentInfo.html + name: ArgumentInfo + nameWithType: ArgumentInfo + fullName: DocFxToTemplate.Models.DocFx.ArgumentInfo +- uid: DocFxToTemplate.Models.DocFx.AttributeInfo + commentId: T:DocFxToTemplate.Models.DocFx.AttributeInfo + href: DocFxToTemplate.Models.DocFx.AttributeInfo.html + name: AttributeInfo + nameWithType: AttributeInfo + fullName: DocFxToTemplate.Models.DocFx.AttributeInfo +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + name: CompositeDictionary + nameWithType: CompositeDictionary + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary +- uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + commentId: T:DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + name: CompositeDictionary.Builder + nameWithType: CompositeDictionary.Builder + fullName: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: Builder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: Builder + href: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder.html +- uid: DocFxToTemplate.Models.DocFx.Constants + commentId: T:DocFxToTemplate.Models.DocFx.Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants + nameWithType: Constants + fullName: DocFxToTemplate.Models.DocFx.Constants +- uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType + commentId: T:DocFxToTemplate.Models.DocFx.Constants.DocumentType + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.DocumentType + nameWithType: Constants.DocumentType + fullName: DocFxToTemplate.Models.DocFx.Constants.DocumentType + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType + name: DocumentType + href: DocFxToTemplate.Models.DocFx.Constants.DocumentType.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType + name: DocumentType + href: DocFxToTemplate.Models.DocFx.Constants.DocumentType.html +- uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName + commentId: T:DocFxToTemplate.Models.DocFx.Constants.PropertyName + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.PropertyName + nameWithType: Constants.PropertyName + fullName: DocFxToTemplate.Models.DocFx.Constants.PropertyName + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName + name: PropertyName + href: DocFxToTemplate.Models.DocFx.Constants.PropertyName.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName + name: PropertyName + href: DocFxToTemplate.Models.DocFx.Constants.PropertyName.html +- uid: DocFxToTemplate.Models.DocFx.Constants.MetadataName + commentId: T:DocFxToTemplate.Models.DocFx.Constants.MetadataName + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.MetadataName + nameWithType: Constants.MetadataName + fullName: DocFxToTemplate.Models.DocFx.Constants.MetadataName + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.MetadataName + name: MetadataName + href: DocFxToTemplate.Models.DocFx.Constants.MetadataName.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.MetadataName + name: MetadataName + href: DocFxToTemplate.Models.DocFx.Constants.MetadataName.html +- uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + commentId: T:DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.ExtensionMemberPrefix + nameWithType: Constants.ExtensionMemberPrefix + fullName: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + name: ExtensionMemberPrefix + href: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + name: ExtensionMemberPrefix + href: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix.html +- uid: DocFxToTemplate.Models.DocFx.Constants.DevLang + commentId: T:DocFxToTemplate.Models.DocFx.Constants.DevLang + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.DevLang + nameWithType: Constants.DevLang + fullName: DocFxToTemplate.Models.DocFx.Constants.DevLang + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.DevLang + name: DevLang + href: DocFxToTemplate.Models.DocFx.Constants.DevLang.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.DevLang + name: DevLang + href: DocFxToTemplate.Models.DocFx.Constants.DevLang.html +- uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + commentId: T:DocFxToTemplate.Models.DocFx.Constants.TableOfContents + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.TableOfContents + nameWithType: Constants.TableOfContents + fullName: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + name: TableOfContents + href: DocFxToTemplate.Models.DocFx.Constants.TableOfContents.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + name: TableOfContents + href: DocFxToTemplate.Models.DocFx.Constants.TableOfContents.html +- uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + commentId: T:DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.EnvironmentVariables + nameWithType: Constants.EnvironmentVariables + fullName: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + name: EnvironmentVariables + href: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + name: EnvironmentVariables + href: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables.html +- uid: DocFxToTemplate.Models.DocFx.Constants.Switches + commentId: T:DocFxToTemplate.Models.DocFx.Constants.Switches + href: DocFxToTemplate.Models.DocFx.Constants.html + name: Constants.Switches + nameWithType: Constants.Switches + fullName: DocFxToTemplate.Models.DocFx.Constants.Switches + spec.csharp: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.Switches + name: Switches + href: DocFxToTemplate.Models.DocFx.Constants.Switches.html + spec.vb: + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + href: DocFxToTemplate.Models.DocFx.Constants.html + - name: . + - uid: DocFxToTemplate.Models.DocFx.Constants.Switches + name: Switches + href: DocFxToTemplate.Models.DocFx.Constants.Switches.html +- uid: DocFxToTemplate.Models.DocFx.ExceptionInfo + commentId: T:DocFxToTemplate.Models.DocFx.ExceptionInfo + href: DocFxToTemplate.Models.DocFx.ExceptionInfo.html + name: ExceptionInfo + nameWithType: ExceptionInfo + fullName: DocFxToTemplate.Models.DocFx.ExceptionInfo +- uid: DocFxToTemplate.Models.DocFx.GitDetail + commentId: T:DocFxToTemplate.Models.DocFx.GitDetail + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.GitDetail.html + name: GitDetail + nameWithType: GitDetail + fullName: DocFxToTemplate.Models.DocFx.GitDetail +- uid: DocFxToTemplate.Models.DocFx.ItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ItemViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ItemViewModel.html + name: ItemViewModel + nameWithType: ItemViewModel + fullName: DocFxToTemplate.Models.DocFx.ItemViewModel +- uid: DocFxToTemplate.Models.DocFx.LinkInfo + commentId: T:DocFxToTemplate.Models.DocFx.LinkInfo + href: DocFxToTemplate.Models.DocFx.LinkInfo.html + name: LinkInfo + nameWithType: LinkInfo + fullName: DocFxToTemplate.Models.DocFx.LinkInfo +- uid: DocFxToTemplate.Models.DocFx.LinkType + commentId: T:DocFxToTemplate.Models.DocFx.LinkType + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.LinkType.html + name: LinkType + nameWithType: LinkType + fullName: DocFxToTemplate.Models.DocFx.LinkType +- uid: DocFxToTemplate.Models.DocFx.MemberType + commentId: T:DocFxToTemplate.Models.DocFx.MemberType + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.MemberType.html + name: MemberType + nameWithType: MemberType + fullName: DocFxToTemplate.Models.DocFx.MemberType +- uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + commentId: T:DocFxToTemplate.Models.DocFx.NamedArgumentInfo + href: DocFxToTemplate.Models.DocFx.NamedArgumentInfo.html + name: NamedArgumentInfo + nameWithType: NamedArgumentInfo + fullName: DocFxToTemplate.Models.DocFx.NamedArgumentInfo +- uid: DocFxToTemplate.Models.DocFx.PageViewModel + commentId: T:DocFxToTemplate.Models.DocFx.PageViewModel + href: DocFxToTemplate.Models.DocFx.PageViewModel.html + name: PageViewModel + nameWithType: PageViewModel + fullName: DocFxToTemplate.Models.DocFx.PageViewModel +- uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + commentId: T:DocFxToTemplate.Models.DocFx.ReferenceViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.ReferenceViewModel.html + name: ReferenceViewModel + nameWithType: ReferenceViewModel + fullName: DocFxToTemplate.Models.DocFx.ReferenceViewModel +- uid: DocFxToTemplate.Models.DocFx.SourceDetail + commentId: T:DocFxToTemplate.Models.DocFx.SourceDetail + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.SourceDetail.html + name: SourceDetail + nameWithType: SourceDetail + fullName: DocFxToTemplate.Models.DocFx.SourceDetail +- uid: DocFxToTemplate.Models.DocFx.SpecViewModel + commentId: T:DocFxToTemplate.Models.DocFx.SpecViewModel + href: DocFxToTemplate.Models.DocFx.SpecViewModel.html + name: SpecViewModel + nameWithType: SpecViewModel + fullName: DocFxToTemplate.Models.DocFx.SpecViewModel +- uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + commentId: T:DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel.html + name: SyntaxDetailViewModel + nameWithType: SyntaxDetailViewModel + fullName: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel +- uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage + commentId: T:DocFxToTemplate.Models.DocFx.SyntaxLanguage + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.SyntaxLanguage.html + name: SyntaxLanguage + nameWithType: SyntaxLanguage + fullName: DocFxToTemplate.Models.DocFx.SyntaxLanguage +- uid: DocFxToTemplate.Models.DocFx.TocItemViewModel + commentId: T:DocFxToTemplate.Models.DocFx.TocItemViewModel + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.TocItemViewModel.html + name: TocItemViewModel + nameWithType: TocItemViewModel + fullName: DocFxToTemplate.Models.DocFx.TocItemViewModel +- uid: DocFxToTemplate.Models.DocFx.MarkdownLink + commentId: T:DocFxToTemplate.Models.DocFx.MarkdownLink + parent: DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.Models.DocFx.MarkdownLink.html + name: MarkdownLink + nameWithType: MarkdownLink + fullName: DocFxToTemplate.Models.DocFx.MarkdownLink +- uid: DocFxToTemplate.Models.DocFx + commentId: N:DocFxToTemplate.Models.DocFx + href: DocFxToTemplate.html + name: DocFxToTemplate.Models.DocFx + nameWithType: DocFxToTemplate.Models.DocFx + fullName: DocFxToTemplate.Models.DocFx + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Models + name: Models + href: DocFxToTemplate.Models.html + - name: . + - uid: DocFxToTemplate.Models.DocFx + name: DocFx + href: DocFxToTemplate.Models.DocFx.html diff --git a/api/DocFxToTemplate.Templates.TemplateLoader.yml b/api/DocFxToTemplate.Templates.TemplateLoader.yml new file mode 100644 index 0000000..e17548d --- /dev/null +++ b/api/DocFxToTemplate.Templates.TemplateLoader.yml @@ -0,0 +1,781 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Templates.TemplateLoader + commentId: T:DocFxToTemplate.Templates.TemplateLoader + id: TemplateLoader + parent: DocFxToTemplate.Templates + children: + - DocFxToTemplate.Templates.TemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + - DocFxToTemplate.Templates.TemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + - DocFxToTemplate.Templates.TemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + langs: + - csharp + - vb + name: TemplateLoader + nameWithType: TemplateLoader + fullName: DocFxToTemplate.Templates.TemplateLoader + type: Class + source: + id: TemplateLoader + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Templates\TemplateLoader.cs + startLine: 6 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Templates + syntax: + content: 'public class TemplateLoader : ITemplateLoader' + content.vb: Public Class TemplateLoader Implements ITemplateLoader + inheritance: + - System.Object + implements: + - Scriban.Runtime.ITemplateLoader + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: DocFxToTemplate.Templates.TemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + commentId: M:DocFxToTemplate.Templates.TemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + id: GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + parent: DocFxToTemplate.Templates.TemplateLoader + langs: + - csharp + - vb + name: GetPath(TemplateContext, SourceSpan, string) + nameWithType: TemplateLoader.GetPath(TemplateContext, SourceSpan, string) + fullName: DocFxToTemplate.Templates.TemplateLoader.GetPath(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, string) + type: Method + source: + id: GetPath + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Templates\TemplateLoader.cs + startLine: 10 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Templates + summary: >- + Gets an absolute path for the specified include template name. Note that it is not necessarely a path on a disk, + + but an absolute path that can be used as a dictionary key for caching) + example: [] + syntax: + content: public string GetPath(TemplateContext context, SourceSpan callerSpan, string templateName) + parameters: + - id: context + type: Scriban.TemplateContext + description: The current context called from + - id: callerSpan + type: Scriban.Parsing.SourceSpan + description: The current span called from + - id: templateName + type: System.String + description: The name of the template to load + return: + type: System.String + description: An absolute path or unique key for the specified template name + content.vb: Public Function GetPath(context As TemplateContext, callerSpan As SourceSpan, templateName As String) As String + overload: DocFxToTemplate.Templates.TemplateLoader.GetPath* + implements: + - Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + nameWithType.vb: TemplateLoader.GetPath(TemplateContext, SourceSpan, String) + fullName.vb: DocFxToTemplate.Templates.TemplateLoader.GetPath(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, String) + name.vb: GetPath(TemplateContext, SourceSpan, String) +- uid: DocFxToTemplate.Templates.TemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + commentId: M:DocFxToTemplate.Templates.TemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + id: Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + parent: DocFxToTemplate.Templates.TemplateLoader + langs: + - csharp + - vb + name: Load(TemplateContext, SourceSpan, string) + nameWithType: TemplateLoader.Load(TemplateContext, SourceSpan, string) + fullName: DocFxToTemplate.Templates.TemplateLoader.Load(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, string) + type: Method + source: + id: Load + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Templates\TemplateLoader.cs + startLine: 15 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Templates + summary: Loads a template using the specified template path/key. + example: [] + syntax: + content: public string Load(TemplateContext context, SourceSpan callerSpan, string templatePath) + parameters: + - id: context + type: Scriban.TemplateContext + description: The current context called from + - id: callerSpan + type: Scriban.Parsing.SourceSpan + description: The current span called from + - id: templatePath + type: System.String + description: The path/key previously returned by + return: + type: System.String + description: The content string loaded from the specified template path/key + content.vb: Public Function Load(context As TemplateContext, callerSpan As SourceSpan, templatePath As String) As String + overload: DocFxToTemplate.Templates.TemplateLoader.Load* + implements: + - Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + nameWithType.vb: TemplateLoader.Load(TemplateContext, SourceSpan, String) + fullName.vb: DocFxToTemplate.Templates.TemplateLoader.Load(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, String) + name.vb: Load(TemplateContext, SourceSpan, String) +- uid: DocFxToTemplate.Templates.TemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + commentId: M:DocFxToTemplate.Templates.TemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + id: LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + parent: DocFxToTemplate.Templates.TemplateLoader + langs: + - csharp + - vb + name: LoadAsync(TemplateContext, SourceSpan, string) + nameWithType: TemplateLoader.LoadAsync(TemplateContext, SourceSpan, string) + fullName: DocFxToTemplate.Templates.TemplateLoader.LoadAsync(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, string) + type: Method + source: + id: LoadAsync + path: T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Templates\TemplateLoader.cs + startLine: 20 + assemblies: + - DocFxToTemplate + namespace: DocFxToTemplate.Templates + summary: Loads a template using the specified template path/key. + example: [] + syntax: + content: public ValueTask LoadAsync(TemplateContext context, SourceSpan callerSpan, string templatePath) + parameters: + - id: context + type: Scriban.TemplateContext + description: The current context called from + - id: callerSpan + type: Scriban.Parsing.SourceSpan + description: The current span called from + - id: templatePath + type: System.String + description: The path/key previously returned by + return: + type: System.Threading.Tasks.ValueTask{System.String} + description: The content string loaded from the specified template path/key + content.vb: Public Function LoadAsync(context As TemplateContext, callerSpan As SourceSpan, templatePath As String) As ValueTask(Of String) + overload: DocFxToTemplate.Templates.TemplateLoader.LoadAsync* + implements: + - Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + nameWithType.vb: TemplateLoader.LoadAsync(TemplateContext, SourceSpan, String) + fullName.vb: DocFxToTemplate.Templates.TemplateLoader.LoadAsync(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, String) + name.vb: LoadAsync(TemplateContext, SourceSpan, String) +references: +- uid: DocFxToTemplate.Templates + commentId: N:DocFxToTemplate.Templates + href: DocFxToTemplate.html + name: DocFxToTemplate.Templates + nameWithType: DocFxToTemplate.Templates + fullName: DocFxToTemplate.Templates + spec.csharp: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Templates + name: Templates + href: DocFxToTemplate.Templates.html + spec.vb: + - uid: DocFxToTemplate + name: DocFxToTemplate + href: DocFxToTemplate.html + - name: . + - uid: DocFxToTemplate.Templates + name: Templates + href: DocFxToTemplate.Templates.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Scriban.Runtime.ITemplateLoader + commentId: T:Scriban.Runtime.ITemplateLoader + parent: Scriban.Runtime + isExternal: true + name: ITemplateLoader + nameWithType: ITemplateLoader + fullName: Scriban.Runtime.ITemplateLoader +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Scriban.Runtime + commentId: N:Scriban.Runtime + isExternal: true + name: Scriban.Runtime + nameWithType: Scriban.Runtime + fullName: Scriban.Runtime + spec.csharp: + - uid: Scriban + name: Scriban + isExternal: true + - name: . + - uid: Scriban.Runtime + name: Runtime + isExternal: true + spec.vb: + - uid: Scriban + name: Scriban + isExternal: true + - name: . + - uid: Scriban.Runtime + name: Runtime + isExternal: true +- uid: DocFxToTemplate.Templates.TemplateLoader.GetPath* + commentId: Overload:DocFxToTemplate.Templates.TemplateLoader.GetPath + href: DocFxToTemplate.Templates.TemplateLoader.html#DocFxToTemplate_Templates_TemplateLoader_GetPath_Scriban_TemplateContext_Scriban_Parsing_SourceSpan_System_String_ + name: GetPath + nameWithType: TemplateLoader.GetPath + fullName: DocFxToTemplate.Templates.TemplateLoader.GetPath +- uid: Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + commentId: M:Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + parent: Scriban.Runtime.ITemplateLoader + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: GetPath(TemplateContext, SourceSpan, string) + nameWithType: ITemplateLoader.GetPath(TemplateContext, SourceSpan, string) + fullName: Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, string) + nameWithType.vb: ITemplateLoader.GetPath(TemplateContext, SourceSpan, String) + fullName.vb: Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, String) + name.vb: GetPath(TemplateContext, SourceSpan, String) + spec.csharp: + - uid: Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + name: GetPath + isExternal: true + - name: ( + - uid: Scriban.TemplateContext + name: TemplateContext + isExternal: true + - name: ',' + - name: " " + - uid: Scriban.Parsing.SourceSpan + name: SourceSpan + isExternal: true + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Scriban.Runtime.ITemplateLoader.GetPath(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + name: GetPath + isExternal: true + - name: ( + - uid: Scriban.TemplateContext + name: TemplateContext + isExternal: true + - name: ',' + - name: " " + - uid: Scriban.Parsing.SourceSpan + name: SourceSpan + isExternal: true + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Scriban.TemplateContext + commentId: T:Scriban.TemplateContext + parent: Scriban + isExternal: true + name: TemplateContext + nameWithType: TemplateContext + fullName: Scriban.TemplateContext +- uid: Scriban.Parsing.SourceSpan + commentId: T:Scriban.Parsing.SourceSpan + parent: Scriban.Parsing + isExternal: true + name: SourceSpan + nameWithType: SourceSpan + fullName: Scriban.Parsing.SourceSpan +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Scriban + commentId: N:Scriban + isExternal: true + name: Scriban + nameWithType: Scriban + fullName: Scriban +- uid: Scriban.Parsing + commentId: N:Scriban.Parsing + isExternal: true + name: Scriban.Parsing + nameWithType: Scriban.Parsing + fullName: Scriban.Parsing + spec.csharp: + - uid: Scriban + name: Scriban + isExternal: true + - name: . + - uid: Scriban.Parsing + name: Parsing + isExternal: true + spec.vb: + - uid: Scriban + name: Scriban + isExternal: true + - name: . + - uid: Scriban.Parsing + name: Parsing + isExternal: true +- uid: DocFxToTemplate.Templates.TemplateLoader.Load* + commentId: Overload:DocFxToTemplate.Templates.TemplateLoader.Load + href: DocFxToTemplate.Templates.TemplateLoader.html#DocFxToTemplate_Templates_TemplateLoader_Load_Scriban_TemplateContext_Scriban_Parsing_SourceSpan_System_String_ + name: Load + nameWithType: TemplateLoader.Load + fullName: DocFxToTemplate.Templates.TemplateLoader.Load +- uid: Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + commentId: M:Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + parent: Scriban.Runtime.ITemplateLoader + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: Load(TemplateContext, SourceSpan, string) + nameWithType: ITemplateLoader.Load(TemplateContext, SourceSpan, string) + fullName: Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, string) + nameWithType.vb: ITemplateLoader.Load(TemplateContext, SourceSpan, String) + fullName.vb: Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, String) + name.vb: Load(TemplateContext, SourceSpan, String) + spec.csharp: + - uid: Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + name: Load + isExternal: true + - name: ( + - uid: Scriban.TemplateContext + name: TemplateContext + isExternal: true + - name: ',' + - name: " " + - uid: Scriban.Parsing.SourceSpan + name: SourceSpan + isExternal: true + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Scriban.Runtime.ITemplateLoader.Load(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + name: Load + isExternal: true + - name: ( + - uid: Scriban.TemplateContext + name: TemplateContext + isExternal: true + - name: ',' + - name: " " + - uid: Scriban.Parsing.SourceSpan + name: SourceSpan + isExternal: true + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: DocFxToTemplate.Templates.TemplateLoader.LoadAsync* + commentId: Overload:DocFxToTemplate.Templates.TemplateLoader.LoadAsync + href: DocFxToTemplate.Templates.TemplateLoader.html#DocFxToTemplate_Templates_TemplateLoader_LoadAsync_Scriban_TemplateContext_Scriban_Parsing_SourceSpan_System_String_ + name: LoadAsync + nameWithType: TemplateLoader.LoadAsync + fullName: DocFxToTemplate.Templates.TemplateLoader.LoadAsync +- uid: Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + commentId: M:Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + parent: Scriban.Runtime.ITemplateLoader + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: LoadAsync(TemplateContext, SourceSpan, string) + nameWithType: ITemplateLoader.LoadAsync(TemplateContext, SourceSpan, string) + fullName: Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, string) + nameWithType.vb: ITemplateLoader.LoadAsync(TemplateContext, SourceSpan, String) + fullName.vb: Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext, Scriban.Parsing.SourceSpan, String) + name.vb: LoadAsync(TemplateContext, SourceSpan, String) + spec.csharp: + - uid: Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + name: LoadAsync + isExternal: true + - name: ( + - uid: Scriban.TemplateContext + name: TemplateContext + isExternal: true + - name: ',' + - name: " " + - uid: Scriban.Parsing.SourceSpan + name: SourceSpan + isExternal: true + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Scriban.Runtime.ITemplateLoader.LoadAsync(Scriban.TemplateContext,Scriban.Parsing.SourceSpan,System.String) + name: LoadAsync + isExternal: true + - name: ( + - uid: Scriban.TemplateContext + name: TemplateContext + isExternal: true + - name: ',' + - name: " " + - uid: Scriban.Parsing.SourceSpan + name: SourceSpan + isExternal: true + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Threading.Tasks.ValueTask{System.String} + commentId: T:System.Threading.Tasks.ValueTask{System.String} + parent: System.Threading.Tasks + definition: System.Threading.Tasks.ValueTask`1 + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.valuetask-1 + name: ValueTask + nameWithType: ValueTask + fullName: System.Threading.Tasks.ValueTask + nameWithType.vb: ValueTask(Of String) + fullName.vb: System.Threading.Tasks.ValueTask(Of String) + name.vb: ValueTask(Of String) + spec.csharp: + - uid: System.Threading.Tasks.ValueTask`1 + name: ValueTask + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.valuetask-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Threading.Tasks.ValueTask`1 + name: ValueTask + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.valuetask-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Threading.Tasks.ValueTask`1 + commentId: T:System.Threading.Tasks.ValueTask`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.valuetask-1 + name: ValueTask + nameWithType: ValueTask + fullName: System.Threading.Tasks.ValueTask + nameWithType.vb: ValueTask(Of TResult) + fullName.vb: System.Threading.Tasks.ValueTask(Of TResult) + name.vb: ValueTask(Of TResult) + spec.csharp: + - uid: System.Threading.Tasks.ValueTask`1 + name: ValueTask + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.valuetask-1 + - name: < + - name: TResult + - name: '>' + spec.vb: + - uid: System.Threading.Tasks.ValueTask`1 + name: ValueTask + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.valuetask-1 + - name: ( + - name: Of + - name: " " + - name: TResult + - name: ) +- uid: System.Threading.Tasks + commentId: N:System.Threading.Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Threading.Tasks + nameWithType: System.Threading.Tasks + fullName: System.Threading.Tasks + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Threading + name: Threading + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading + - name: . + - uid: System.Threading.Tasks + name: Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Threading + name: Threading + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading + - name: . + - uid: System.Threading.Tasks + name: Tasks + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.threading.tasks diff --git a/api/DocFxToTemplate.Templates.yml b/api/DocFxToTemplate.Templates.yml new file mode 100644 index 0000000..894613c --- /dev/null +++ b/api/DocFxToTemplate.Templates.yml @@ -0,0 +1,23 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate.Templates + commentId: N:DocFxToTemplate.Templates + id: DocFxToTemplate.Templates + children: + - DocFxToTemplate.Templates.TemplateLoader + langs: + - csharp + - vb + name: DocFxToTemplate.Templates + nameWithType: DocFxToTemplate.Templates + fullName: DocFxToTemplate.Templates + type: Namespace + assemblies: + - DocFxToTemplate +references: +- uid: DocFxToTemplate.Templates.TemplateLoader + commentId: T:DocFxToTemplate.Templates.TemplateLoader + href: DocFxToTemplate.Templates.TemplateLoader.html + name: TemplateLoader + nameWithType: TemplateLoader + fullName: DocFxToTemplate.Templates.TemplateLoader diff --git a/api/DocFxToTemplate.yml b/api/DocFxToTemplate.yml new file mode 100644 index 0000000..816543c --- /dev/null +++ b/api/DocFxToTemplate.yml @@ -0,0 +1,37 @@ +### YamlMime:ManagedReference +items: +- uid: DocFxToTemplate + commentId: N:DocFxToTemplate + id: DocFxToTemplate + children: + - DocFxToTemplate.Generator + - DocFxToTemplate.GeneratorOptions + langs: + - csharp + - vb + name: DocFxToTemplate + nameWithType: DocFxToTemplate + fullName: DocFxToTemplate + type: Namespace + assemblies: + - DocFxToTemplate +references: +- uid: DocFxToTemplate.Generator + commentId: T:DocFxToTemplate.Generator + href: DocFxToTemplate.Generator.html + name: Generator + nameWithType: Generator + fullName: DocFxToTemplate.Generator +- uid: DocFxToTemplate.GeneratorOptions + commentId: T:DocFxToTemplate.GeneratorOptions + parent: DocFxToTemplate + href: DocFxToTemplate.GeneratorOptions.html + name: GeneratorOptions + nameWithType: GeneratorOptions + fullName: DocFxToTemplate.GeneratorOptions +- uid: DocFxToTemplate + commentId: N:DocFxToTemplate + href: DocFxToTemplate.html + name: DocFxToTemplate + nameWithType: DocFxToTemplate + fullName: DocFxToTemplate diff --git a/api/toc.yml b/api/toc.yml new file mode 100644 index 0000000..9bd5d3f --- /dev/null +++ b/api/toc.yml @@ -0,0 +1,106 @@ +### YamlMime:TableOfContent +items: +- uid: DocFxToTemplate + name: DocFxToTemplate + items: + - uid: DocFxToTemplate.Generator + name: Generator + - uid: DocFxToTemplate.GeneratorOptions + name: GeneratorOptions +- uid: DocFxToTemplate.Example1 + name: DocFxToTemplate.Example1 + items: + - uid: DocFxToTemplate.Example1.Class1 + name: Class1 + - uid: DocFxToTemplate.Example1.Enum1 + name: Enum1 + - uid: DocFxToTemplate.Example1.Flags1 + name: Flags1 + - uid: DocFxToTemplate.Example1.Interface1 + name: Interface1 + - uid: DocFxToTemplate.Example1.Record1 + name: Record1 + - uid: DocFxToTemplate.Example1.Struct1 + name: Struct1 +- uid: DocFxToTemplate.Models.DocFx + name: DocFxToTemplate.Models.DocFx + items: + - uid: DocFxToTemplate.Models.DocFx.AdditionalNotes + name: AdditionalNotes + - uid: DocFxToTemplate.Models.DocFx.ApiParameter + name: ApiParameter + - uid: DocFxToTemplate.Models.DocFx.ArgumentInfo + name: ArgumentInfo + - uid: DocFxToTemplate.Models.DocFx.AttributeInfo + name: AttributeInfo + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary + name: CompositeDictionary + - uid: DocFxToTemplate.Models.DocFx.CompositeDictionary.Builder + name: CompositeDictionary.Builder + - uid: DocFxToTemplate.Models.DocFx.Constants + name: Constants + - uid: DocFxToTemplate.Models.DocFx.Constants.DevLang + name: Constants.DevLang + - uid: DocFxToTemplate.Models.DocFx.Constants.DocumentType + name: Constants.DocumentType + - uid: DocFxToTemplate.Models.DocFx.Constants.EnvironmentVariables + name: Constants.EnvironmentVariables + - uid: DocFxToTemplate.Models.DocFx.Constants.ExtensionMemberPrefix + name: Constants.ExtensionMemberPrefix + - uid: DocFxToTemplate.Models.DocFx.Constants.MetadataName + name: Constants.MetadataName + - uid: DocFxToTemplate.Models.DocFx.Constants.PropertyName + name: Constants.PropertyName + - uid: DocFxToTemplate.Models.DocFx.Constants.Switches + name: Constants.Switches + - uid: DocFxToTemplate.Models.DocFx.Constants.TableOfContents + name: Constants.TableOfContents + - uid: DocFxToTemplate.Models.DocFx.ExceptionInfo + name: ExceptionInfo + - uid: DocFxToTemplate.Models.DocFx.GitDetail + name: GitDetail + - uid: DocFxToTemplate.Models.DocFx.ItemViewModel + name: ItemViewModel + - uid: DocFxToTemplate.Models.DocFx.LinkInfo + name: LinkInfo + - uid: DocFxToTemplate.Models.DocFx.LinkType + name: LinkType + - uid: DocFxToTemplate.Models.DocFx.MarkdownLink + name: MarkdownLink + - uid: DocFxToTemplate.Models.DocFx.MemberType + name: MemberType + - uid: DocFxToTemplate.Models.DocFx.NamedArgumentInfo + name: NamedArgumentInfo + - uid: DocFxToTemplate.Models.DocFx.PageViewModel + name: PageViewModel + - uid: DocFxToTemplate.Models.DocFx.ReferenceViewModel + name: ReferenceViewModel + - uid: DocFxToTemplate.Models.DocFx.SourceDetail + name: SourceDetail + - uid: DocFxToTemplate.Models.DocFx.SpecViewModel + name: SpecViewModel + - uid: DocFxToTemplate.Models.DocFx.SyntaxDetailViewModel + name: SyntaxDetailViewModel + - uid: DocFxToTemplate.Models.DocFx.SyntaxLanguage + name: SyntaxLanguage + - uid: DocFxToTemplate.Models.DocFx.TocItemViewModel + name: TocItemViewModel +- uid: DocFxToTemplate.Models.DocFx.Attributes + name: DocFxToTemplate.Models.DocFx.Attributes + items: + - uid: DocFxToTemplate.Models.DocFx.Attributes.ExtensibleMemberAttribute + name: ExtensibleMemberAttribute + - uid: DocFxToTemplate.Models.DocFx.Attributes.MarkdownContentAttribute + name: MarkdownContentAttribute + - uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOption + name: MergeOption + - uid: DocFxToTemplate.Models.DocFx.Attributes.MergeOptionAttribute + name: MergeOptionAttribute + - uid: DocFxToTemplate.Models.DocFx.Attributes.UniqueIdentityReferenceAttribute + name: UniqueIdentityReferenceAttribute +- uid: DocFxToTemplate.Templates + name: DocFxToTemplate.Templates + items: + - uid: DocFxToTemplate.Templates.TemplateLoader + name: TemplateLoader +memberLayout: SamePage diff --git a/docfx.json b/docfx.json new file mode 100644 index 0000000..44c0ef7 --- /dev/null +++ b/docfx.json @@ -0,0 +1,15 @@ +{ + "metadata": [ + { + "src": [ + { + "files": [ + "src/**/*.csproj", + ], + "src": "" + } + ], + "dest": "api" + } + ] +} diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..b2d6de3 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,20 @@ +# Dependencies +/node_modules + +# Production +/build + +# Generated files +.docusaurus +.cache-loader + +# Misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..0c6c2c2 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,41 @@ +# Website + +This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator. + +### Installation + +``` +$ yarn +``` + +### Local Development + +``` +$ yarn start +``` + +This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. + +### Build + +``` +$ yarn build +``` + +This command generates static content into the `build` directory and can be served using any static contents hosting service. + +### Deployment + +Using SSH: + +``` +$ USE_SSH=true yarn deploy +``` + +Not using SSH: + +``` +$ GIT_USER= yarn deploy +``` + +If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch. diff --git a/docs/babel.config.js b/docs/babel.config.js new file mode 100644 index 0000000..e00595d --- /dev/null +++ b/docs/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + presets: [require.resolve('@docusaurus/core/lib/babel/preset')], +}; diff --git a/docs/docs/api/DocFxToTemplate.Example1/Class1.md b/docs/docs/api/DocFxToTemplate.Example1/Class1.md new file mode 100644 index 0000000..125a160 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/Class1.md @@ -0,0 +1,36 @@ +--- +title: Class Class1 +sidebar_label: Class1 +description: TODO +--- + +# Class Class1 +Namespace: DocFxToTemplate.Example1 +Assembly: DocFxToTemplate.Example1.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Class1.cs#2" +public class Class1 +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Class1](../DocFxToTemplate.Example1/Class1) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Example1/DocFxToTemplate.Example1.md b/docs/docs/api/DocFxToTemplate.Example1/DocFxToTemplate.Example1.md new file mode 100644 index 0000000..69e55a3 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/DocFxToTemplate.Example1.md @@ -0,0 +1,23 @@ +--- +title: Namespace DocFxToTemplate.Example1 +sidebar_label: DocFxToTemplate.Example1 +--- + +# Namespace DocFxToTemplate.Example1 + +## Classes +### [Class1](../DocFxToTemplate.Example1/Class1) + +### [Record1](../DocFxToTemplate.Example1/Record1) + +## Structs +### [Struct1](../DocFxToTemplate.Example1/Struct1) + +## Interfaces +### [Interface1](../DocFxToTemplate.Example1/Interface1) + +## Enums +### [Enum1](../DocFxToTemplate.Example1/Enum1) + +### [Flags1](../DocFxToTemplate.Example1/Flags1) + diff --git a/docs/docs/api/DocFxToTemplate.Example1/Enum1.md b/docs/docs/api/DocFxToTemplate.Example1/Enum1.md new file mode 100644 index 0000000..a6e63a1 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/Enum1.md @@ -0,0 +1,33 @@ +--- +title: Enum Enum1 +sidebar_label: Enum1 +description: TODO +--- + +# Enum Enum1 +Namespace: DocFxToTemplate.Example1 +Assembly: DocFxToTemplate.Example1.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Enum1.cs#2" +public enum Enum1 +``` + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Example1/Flags1.md b/docs/docs/api/DocFxToTemplate.Example1/Flags1.md new file mode 100644 index 0000000..5f91184 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/Flags1.md @@ -0,0 +1,45 @@ +--- +title: Enum Flags1 +sidebar_label: Flags1 +description: TODO +--- + +# Enum Flags1 +Namespace: DocFxToTemplate.Example1 +Assembly: DocFxToTemplate.Example1.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Flags1.cs#2" +[Flags] +public enum Flags1 +``` + + + + + + + + + +## Fields +### Flag1 + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Flags1.cs#5" +Flag1 = 0 +``` +### Flag2 + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Flags1.cs#6" +Flag2 = 1 +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Example1/Interface1.md b/docs/docs/api/DocFxToTemplate.Example1/Interface1.md new file mode 100644 index 0000000..fddff55 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/Interface1.md @@ -0,0 +1,33 @@ +--- +title: Interface Interface1 +sidebar_label: Interface1 +description: TODO +--- + +# Interface Interface1 +Namespace: DocFxToTemplate.Example1 +Assembly: DocFxToTemplate.Example1.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Interface1.cs#2" +public interface Interface1 +``` + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Example1/Record1.md b/docs/docs/api/DocFxToTemplate.Example1/Record1.md new file mode 100644 index 0000000..e946768 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/Record1.md @@ -0,0 +1,39 @@ +--- +title: Class Record1 +sidebar_label: Record1 +description: TODO +--- + +# Class Record1 +Namespace: DocFxToTemplate.Example1 +Assembly: DocFxToTemplate.Example1.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Record1.cs#2" +public record Record1 : IEquatable +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Record1](../DocFxToTemplate.Example1/Record1) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + +**Implements:** +System.IEquatable\ + + + + + + + + + +## Implements +* System.IEquatable\ + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Example1/Struct1.md b/docs/docs/api/DocFxToTemplate.Example1/Struct1.md new file mode 100644 index 0000000..2cb2f29 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Example1/Struct1.md @@ -0,0 +1,34 @@ +--- +title: Struct Struct1 +sidebar_label: Struct1 +description: TODO +--- + +# Struct Struct1 +Namespace: DocFxToTemplate.Example1 +Assembly: DocFxToTemplate.Example1.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\example\DocFxToTemplate.Example1\Struct1.cs#2" +public struct Struct1 +``` + + + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [ValueType.Equals(object)](https://learn.microsoft.com/dotnet/api/system.valuetype.equals), [ValueType.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [ValueType.ToString()](https://learn.microsoft.com/dotnet/api/system.valuetype.tostring) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/DocFxToTemplate.Models.DocFx.Attributes.md b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/DocFxToTemplate.Models.DocFx.Attributes.md new file mode 100644 index 0000000..acb6f76 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/DocFxToTemplate.Models.DocFx.Attributes.md @@ -0,0 +1,19 @@ +--- +title: Namespace DocFxToTemplate.Models.DocFx.Attributes +sidebar_label: DocFxToTemplate.Models.DocFx.Attributes +--- + +# Namespace DocFxToTemplate.Models.DocFx.Attributes + +## Classes +### [ExtensibleMemberAttribute](../DocFxToTemplate.Models.DocFx.Attributes/ExtensibleMemberAttribute) + +### [MarkdownContentAttribute](../DocFxToTemplate.Models.DocFx.Attributes/MarkdownContentAttribute) + +### [MergeOptionAttribute](../DocFxToTemplate.Models.DocFx.Attributes/MergeOptionAttribute) + +### [UniqueIdentityReferenceAttribute](../DocFxToTemplate.Models.DocFx.Attributes/UniqueIdentityReferenceAttribute) + +## Enums +### [MergeOption](../DocFxToTemplate.Models.DocFx.Attributes/MergeOption) + diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/ExtensibleMemberAttribute.md b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/ExtensibleMemberAttribute.md new file mode 100644 index 0000000..5ece571 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/ExtensibleMemberAttribute.md @@ -0,0 +1,37 @@ +--- +title: Class ExtensibleMemberAttribute +sidebar_label: ExtensibleMemberAttribute +description: TODO +--- + +# Class ExtensibleMemberAttribute +Namespace: DocFxToTemplate.Models.DocFx.Attributes +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\ExtensibleMemberAttribute.cs#2" +public class ExtensibleMemberAttribute : Attribute +``` + +**Inheritance:** +[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) <- +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[ExtensibleMemberAttribute](../DocFxToTemplate.Models.DocFx.Attributes/ExtensibleMemberAttribute) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [Attribute.Equals(object)](https://learn.microsoft.com/dotnet/api/system.attribute.equals), [Attribute.GetCustomAttribute(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttribute(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)), [Attribute.GetCustomAttribute(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttribute(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttribute(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)), [Attribute.GetCustomAttribute(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(Assembly, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)), [Attribute.GetCustomAttributes(Assembly)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)), [Attribute.GetCustomAttributes(MemberInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttributes(MemberInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)), [Attribute.GetCustomAttributes(Module, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)), [Attribute.GetCustomAttributes(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttributes(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)), [Attribute.GetCustomAttributes(Module)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)), [Attribute.GetCustomAttributes(ParameterInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(ParameterInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)), [Attribute.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [Attribute.IsDefaultAttribute()](https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute), [Attribute.IsDefined(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)), [Attribute.IsDefined(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)), [Attribute.IsDefined(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.IsDefined(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)), [Attribute.IsDefined(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)), [Attribute.IsDefined(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)), [Attribute.IsDefined(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.IsDefined(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)), [Attribute.Match(object)](https://learn.microsoft.com/dotnet/api/system.attribute.match), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring), [Attribute.TypeId](https://learn.microsoft.com/dotnet/api/system.attribute.typeid) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MarkdownContentAttribute.md b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MarkdownContentAttribute.md new file mode 100644 index 0000000..a440443 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MarkdownContentAttribute.md @@ -0,0 +1,37 @@ +--- +title: Class MarkdownContentAttribute +sidebar_label: MarkdownContentAttribute +description: TODO +--- + +# Class MarkdownContentAttribute +Namespace: DocFxToTemplate.Models.DocFx.Attributes +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MarkdownContentAttribute.cs#2" +public class MarkdownContentAttribute : Attribute +``` + +**Inheritance:** +[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) <- +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[MarkdownContentAttribute](../DocFxToTemplate.Models.DocFx.Attributes/MarkdownContentAttribute) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [Attribute.Equals(object)](https://learn.microsoft.com/dotnet/api/system.attribute.equals), [Attribute.GetCustomAttribute(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttribute(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)), [Attribute.GetCustomAttribute(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttribute(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttribute(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)), [Attribute.GetCustomAttribute(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(Assembly, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)), [Attribute.GetCustomAttributes(Assembly)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)), [Attribute.GetCustomAttributes(MemberInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttributes(MemberInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)), [Attribute.GetCustomAttributes(Module, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)), [Attribute.GetCustomAttributes(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttributes(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)), [Attribute.GetCustomAttributes(Module)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)), [Attribute.GetCustomAttributes(ParameterInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(ParameterInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)), [Attribute.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [Attribute.IsDefaultAttribute()](https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute), [Attribute.IsDefined(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)), [Attribute.IsDefined(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)), [Attribute.IsDefined(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.IsDefined(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)), [Attribute.IsDefined(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)), [Attribute.IsDefined(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)), [Attribute.IsDefined(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.IsDefined(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)), [Attribute.Match(object)](https://learn.microsoft.com/dotnet/api/system.attribute.match), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring), [Attribute.TypeId](https://learn.microsoft.com/dotnet/api/system.attribute.typeid) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MergeOption.md b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MergeOption.md new file mode 100644 index 0000000..3259aab --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MergeOption.md @@ -0,0 +1,49 @@ +--- +title: Enum MergeOption +sidebar_label: MergeOption +description: TODO +--- + +# Enum MergeOption +Namespace: DocFxToTemplate.Models.DocFx.Attributes +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs#9" +public enum MergeOption +``` + + + + + + + + + +## Fields +### Ignore + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs#12" +Ignore = 1 +``` +### MergeKey + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs#11" +MergeKey = 0 +``` +### Replace + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs#13" +Replace = 2 +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MergeOptionAttribute.md b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MergeOptionAttribute.md new file mode 100644 index 0000000..bf69b02 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/MergeOptionAttribute.md @@ -0,0 +1,37 @@ +--- +title: Class MergeOptionAttribute +sidebar_label: MergeOptionAttribute +description: TODO +--- + +# Class MergeOptionAttribute +Namespace: DocFxToTemplate.Models.DocFx.Attributes +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\MergeOptionAttribute.cs#2" +public class MergeOptionAttribute : Attribute +``` + +**Inheritance:** +[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) <- +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[MergeOptionAttribute](../DocFxToTemplate.Models.DocFx.Attributes/MergeOptionAttribute) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [Attribute.Equals(object)](https://learn.microsoft.com/dotnet/api/system.attribute.equals), [Attribute.GetCustomAttribute(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttribute(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)), [Attribute.GetCustomAttribute(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttribute(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttribute(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)), [Attribute.GetCustomAttribute(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(Assembly, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)), [Attribute.GetCustomAttributes(Assembly)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)), [Attribute.GetCustomAttributes(MemberInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttributes(MemberInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)), [Attribute.GetCustomAttributes(Module, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)), [Attribute.GetCustomAttributes(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttributes(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)), [Attribute.GetCustomAttributes(Module)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)), [Attribute.GetCustomAttributes(ParameterInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(ParameterInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)), [Attribute.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [Attribute.IsDefaultAttribute()](https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute), [Attribute.IsDefined(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)), [Attribute.IsDefined(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)), [Attribute.IsDefined(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.IsDefined(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)), [Attribute.IsDefined(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)), [Attribute.IsDefined(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)), [Attribute.IsDefined(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.IsDefined(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)), [Attribute.Match(object)](https://learn.microsoft.com/dotnet/api/system.attribute.match), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring), [Attribute.TypeId](https://learn.microsoft.com/dotnet/api/system.attribute.typeid) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/UniqueIdentityReferenceAttribute.md b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/UniqueIdentityReferenceAttribute.md new file mode 100644 index 0000000..d060a4c --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx.Attributes/UniqueIdentityReferenceAttribute.md @@ -0,0 +1,37 @@ +--- +title: Class UniqueIdentityReferenceAttribute +sidebar_label: UniqueIdentityReferenceAttribute +description: TODO +--- + +# Class UniqueIdentityReferenceAttribute +Namespace: DocFxToTemplate.Models.DocFx.Attributes +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Attributes\UniqueIdentityReferenceAttribute.cs#2" +public class UniqueIdentityReferenceAttribute : Attribute +``` + +**Inheritance:** +[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) <- +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[UniqueIdentityReferenceAttribute](../DocFxToTemplate.Models.DocFx.Attributes/UniqueIdentityReferenceAttribute) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [Attribute.Equals(object)](https://learn.microsoft.com/dotnet/api/system.attribute.equals), [Attribute.GetCustomAttribute(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttribute(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-assembly-system-type)), [Attribute.GetCustomAttribute(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttribute(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttribute(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-module-system-type)), [Attribute.GetCustomAttribute(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttribute(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattribute#system-attribute-getcustomattribute(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(Assembly, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type-system-boolean)), [Attribute.GetCustomAttributes(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly-system-type)), [Attribute.GetCustomAttributes(Assembly)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-assembly)), [Attribute.GetCustomAttributes(MemberInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo-system-type)), [Attribute.GetCustomAttributes(MemberInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-memberinfo)), [Attribute.GetCustomAttributes(Module, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-boolean)), [Attribute.GetCustomAttributes(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type-system-boolean)), [Attribute.GetCustomAttributes(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module-system-type)), [Attribute.GetCustomAttributes(Module)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-module)), [Attribute.GetCustomAttributes(ParameterInfo, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.GetCustomAttributes(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo-system-type)), [Attribute.GetCustomAttributes(ParameterInfo)](https://learn.microsoft.com/dotnet/api/system.attribute.getcustomattributes#system-attribute-getcustomattributes(system-reflection-parameterinfo)), [Attribute.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.attribute.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [Attribute.IsDefaultAttribute()](https://learn.microsoft.com/dotnet/api/system.attribute.isdefaultattribute), [Attribute.IsDefined(Assembly, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type-system-boolean)), [Attribute.IsDefined(Assembly, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-assembly-system-type)), [Attribute.IsDefined(MemberInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type-system-boolean)), [Attribute.IsDefined(MemberInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-memberinfo-system-type)), [Attribute.IsDefined(Module, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type-system-boolean)), [Attribute.IsDefined(Module, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-module-system-type)), [Attribute.IsDefined(ParameterInfo, Type, bool)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type-system-boolean)), [Attribute.IsDefined(ParameterInfo, Type)](https://learn.microsoft.com/dotnet/api/system.attribute.isdefined#system-attribute-isdefined(system-reflection-parameterinfo-system-type)), [Attribute.Match(object)](https://learn.microsoft.com/dotnet/api/system.attribute.match), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring), [Attribute.TypeId](https://learn.microsoft.com/dotnet/api/system.attribute.typeid) + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/AdditionalNotes.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/AdditionalNotes.md new file mode 100644 index 0000000..0a5ce5a --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/AdditionalNotes.md @@ -0,0 +1,73 @@ +--- +title: Class AdditionalNotes +sidebar_label: AdditionalNotes +description: TODO +--- + +# Class AdditionalNotes +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs#9" +public class AdditionalNotes +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[AdditionalNotes](../DocFxToTemplate.Models.DocFx/AdditionalNotes) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Caller + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs#11" +[YamlMember(Alias = "caller")] +[JsonPropertyName("caller")] +public string Caller { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Implementer + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs#16" +[YamlMember(Alias = "implementer")] +[JsonPropertyName("implementer")] +public string Implementer { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Inheritor + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AdditionalNotes.cs#21" +[YamlMember(Alias = "inheritor")] +[JsonPropertyName("inheritor")] +public string Inheritor { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/ApiParameter.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/ApiParameter.md new file mode 100644 index 0000000..109b7ad --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/ApiParameter.md @@ -0,0 +1,100 @@ +--- +title: Class ApiParameter +sidebar_label: ApiParameter +description: TODO +--- + +# Class ApiParameter +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs#10" +public class ApiParameter +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[ApiParameter](../DocFxToTemplate.Models.DocFx/ApiParameter) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Attributes + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs#27" +[YamlMember(Alias = "attributes")] +[JsonPropertyName("attributes")] +[MergeOption(MergeOption.Ignore)] +public List Attributes { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[AttributeInfo](../DocFxToTemplate.Models.DocFx/AttributeInfo)> + +### Description + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs#22" +[YamlMember(Alias = "description")] +[JsonPropertyName("description")] +public string Description { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs#12" +[YamlMember(Alias = "id")] +[JsonPropertyName("id")] +[MergeOption(MergeOption.MergeKey)] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Reference + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs#32" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public ReferenceViewModel? Reference { get; set; } +``` + +#### Property Value +[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel) + +### Type + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ApiParameter.cs#17" +[YamlMember(Alias = "type")] +[JsonPropertyName("type")] +public string Type { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/ArgumentInfo.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/ArgumentInfo.md new file mode 100644 index 0000000..9fbcea5 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/ArgumentInfo.md @@ -0,0 +1,61 @@ +--- +title: Class ArgumentInfo +sidebar_label: ArgumentInfo +description: TODO +--- + +# Class ArgumentInfo +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ArgumentInfo.cs#9" +public class ArgumentInfo +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[ArgumentInfo](../DocFxToTemplate.Models.DocFx/ArgumentInfo) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Type + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ArgumentInfo.cs#11" +[YamlMember(Alias = "type")] +[JsonPropertyName("type")] +public string Type { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Value + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ArgumentInfo.cs#16" +[YamlMember(Alias = "value")] +[JsonPropertyName("value")] +public object Value { get; set; } +``` + +#### Property Value +[object](https://learn.microsoft.com/dotnet/api/system.object) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/AttributeInfo.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/AttributeInfo.md new file mode 100644 index 0000000..7f51769 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/AttributeInfo.md @@ -0,0 +1,85 @@ +--- +title: Class AttributeInfo +sidebar_label: AttributeInfo +description: TODO +--- + +# Class AttributeInfo +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs#9" +public class AttributeInfo +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[AttributeInfo](../DocFxToTemplate.Models.DocFx/AttributeInfo) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Arguments + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs#20" +[YamlMember(Alias = "arguments")] +[JsonPropertyName("arguments")] +public List Arguments { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ArgumentInfo](../DocFxToTemplate.Models.DocFx/ArgumentInfo)> + +### Constructor + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs#16" +[YamlMember(Alias = "ctor")] +[JsonPropertyName("ctor")] +public string Constructor { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NamedArguments + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs#24" +[YamlMember(Alias = "namedArguments")] +[JsonPropertyName("namedArguments")] +public List NamedArguments { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[NamedArgumentInfo](../DocFxToTemplate.Models.DocFx/NamedArgumentInfo)> + +### Type + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\AttributeInfo.cs#11" +[YamlMember(Alias = "type")] +[JsonPropertyName("type")] +public string Type { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder.md new file mode 100644 index 0000000..0d213bc --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder.md @@ -0,0 +1,58 @@ +--- +title: Class CompositeDictionary.Builder +sidebar_label: CompositeDictionary.Builder +description: TODO +--- + +# Class CompositeDictionary.Builder +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#171" +public sealed class CompositeDictionary.Builder +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[CompositeDictionary.Builder](../DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + + + +## Methods +### Add<TValue>(string, IDictionary<string, TValue>, Func<object, TValue>) + + +#### Parameters +`prefix` [string](https://learn.microsoft.com/dotnet/api/system.string) + +`dict` IDictionary<string, TValue> + +`valueConverter` Func<object, TValue> + +#### Returns + [CompositeDictionary.Builder](../DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder) + + +### Create() + + +#### Returns + [CompositeDictionary](../DocFxToTemplate.Models.DocFx/CompositeDictionary) + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/CompositeDictionary.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/CompositeDictionary.md new file mode 100644 index 0000000..d824793 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/CompositeDictionary.md @@ -0,0 +1,153 @@ +--- +title: Class CompositeDictionary +sidebar_label: CompositeDictionary +description: TODO +--- + +# Class CompositeDictionary +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#8" +public class CompositeDictionary : IDictionary, ICollection>, IEnumerable>, IEnumerable +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[CompositeDictionary](../DocFxToTemplate.Models.DocFx/CompositeDictionary) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + +**Implements:** +System.Collections.Generic.ICollection\\>, System.Collections.Generic.IDictionary\, System.Collections.Generic.IEnumerable\\>, System.Collections.IEnumerable + +## Properties +### Count +Gets the number of elements contained in the System.Collections.Generic.ICollection%601. + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#54" +public int Count { get; } +``` + +#### Property Value +[int](https://learn.microsoft.com/dotnet/api/system.int32) +The number of elements contained in the . +### IsReadOnly +Gets a value indicating whether the System.Collections.Generic.ICollection%601 is read-only. + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#56" +public bool IsReadOnly { get; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) +true if the is read-only; otherwise, false. +### Keys +Gets an System.Collections.Generic.ICollection%601 containing the keys of the System.Collections.Generic.IDictionary%602. + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#58" +public ICollection Keys { get; } +``` + +#### Property Value +[ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> +An containing the keys of the object that implements . +### this[string] +Gets or sets the element with the specified key. + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#23" +public object this[string key] { get; set; } +``` + +#### Property Value +[object](https://learn.microsoft.com/dotnet/api/system.object) +The element with the specified key. +### Values +Gets an System.Collections.Generic.ICollection%601 containing the values in the System.Collections.Generic.IDictionary%602. + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\CompositeDictionary.cs#60" +public ICollection Values { get; } +``` + +#### Property Value +[ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)> +An containing the values in the object that implements . + + + + +## Methods +### Add(string, object) +Adds an element with the provided key and value to the System.Collections.Generic.IDictionary%602. + +#### Parameters +`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +The object to use as the key of the element to add. +`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +The object to use as the value of the element to add. + +### Clear() +Removes all items from the System.Collections.Generic.ICollection%601. + + +### ContainsKey(string) +Determines whether the System.Collections.Generic.IDictionary%602 contains an element with the specified key. + +#### Parameters +`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +The key to locate in the . +#### Returns + [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +true if the contains an element with the key; otherwise, false. + +### CreateBuilder() + + +#### Returns + [CompositeDictionary.Builder](../DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder) + + +### GetEnumerator() +Returns an enumerator that iterates through the collection. + +#### Returns + IEnumerator<KeyValuePair<string, object>> +An enumerator that can be used to iterate through the collection. + +### Remove(string) +Removes the element with the specified key from the System.Collections.Generic.IDictionary%602. + +#### Parameters +`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +The key of the element to remove. +#### Returns + [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original . + +### TryGetValue(string, out object) +Gets the value associated with the specified key. + +#### Parameters +`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +The key whose value to get. +`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized. +#### Returns + [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +true if the object that implements contains an element with the specified key; otherwise, false. + + + + + +## Implements +* System.Collections.Generic.ICollection\\> +* System.Collections.Generic.IDictionary\ +* System.Collections.Generic.IEnumerable\\> +* System.Collections.IEnumerable + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.DevLang.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.DevLang.md new file mode 100644 index 0000000..1c40a12 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.DevLang.md @@ -0,0 +1,47 @@ +--- +title: Class Constants.DevLang +sidebar_label: Constants.DevLang +description: TODO +--- + +# Class Constants.DevLang +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#102" +public static class Constants.DevLang +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.DevLang](../DocFxToTemplate.Models.DocFx/Constants.DevLang) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### CSharp + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#104" +public const string CSharp = "csharp" +``` +### VB + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#105" +public const string VB = "vb" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.DocumentType.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.DocumentType.md new file mode 100644 index 0000000..f64cbd1 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.DocumentType.md @@ -0,0 +1,62 @@ +--- +title: Class Constants.DocumentType +sidebar_label: Constants.DocumentType +description: TODO +--- + +# Class Constants.DocumentType +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#15" +public static class Constants.DocumentType +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.DocumentType](../DocFxToTemplate.Models.DocFx/Constants.DocumentType) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### Conceptual + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#17" +public const string Conceptual = "Conceptual" +``` +### ManagedReference + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#19" +public const string ManagedReference = "ManagedReference" +``` +### Redirection + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#21" +public const string Redirection = "Redirection" +``` +### Resource + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#20" +public const string Resource = "Resource" +``` +### Toc + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#18" +public const string Toc = "Toc" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.EnvironmentVariables.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.EnvironmentVariables.md new file mode 100644 index 0000000..060e149 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.EnvironmentVariables.md @@ -0,0 +1,83 @@ +--- +title: Class Constants.EnvironmentVariables +sidebar_label: Constants.EnvironmentVariables +description: TODO +--- + +# Class Constants.EnvironmentVariables +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#114" +public static class Constants.EnvironmentVariables +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.EnvironmentVariables](../DocFxToTemplate.Models.DocFx/Constants.EnvironmentVariables) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### KeepDebugInfo + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#139" +public static string? KeepDebugInfo { get; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NoCheckCertificateRevocationList + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#141" +public static bool NoCheckCertificateRevocationList { get; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + +### SourceBranchName + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#144" +public static string? SourceBranchName { get; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + +## Fields +### DOCFX_KEEP_DEBUG_INFO + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#130" +public const string DOCFX_KEEP_DEBUG_INFO = "DOCFX_KEEP_DEBUG_INFO" +``` +### DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#132" +public const string DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST = "DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST" +``` +### DOCFX_SOURCE_BRANCH_NAME + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#135" +public const string DOCFX_SOURCE_BRANCH_NAME = "DOCFX_SOURCE_BRANCH_NAME" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.ExtensionMemberPrefix.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.ExtensionMemberPrefix.md new file mode 100644 index 0000000..8f9ead4 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.ExtensionMemberPrefix.md @@ -0,0 +1,137 @@ +--- +title: Class Constants.ExtensionMemberPrefix +sidebar_label: Constants.ExtensionMemberPrefix +description: TODO +--- + +# Class Constants.ExtensionMemberPrefix +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#78" +public static class Constants.ExtensionMemberPrefix +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.ExtensionMemberPrefix](../DocFxToTemplate.Models.DocFx/Constants.ExtensionMemberPrefix) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### Assemblies + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#89" +public const string Assemblies = "assemblies." +``` +### Children + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#86" +public const string Children = "children." +``` +### Content + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#84" +public const string Content = "content." +``` +### DerivedClasses + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#93" +public const string DerivedClasses = "derivedClasses." +``` +### Exceptions + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#91" +public const string Exceptions = "exceptions." +``` +### ExtensionMethods + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#96" +public const string ExtensionMethods = "extensionMethods." +``` +### FullName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#81" +public const string FullName = "fullName." +``` +### Implements + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#94" +public const string Implements = "implements." +``` +### Inheritance + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#92" +public const string Inheritance = "inheritance." +``` +### InheritedMembers + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#95" +public const string InheritedMembers = "inheritedMembers." +``` +### Name + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#82" +public const string Name = "name." +``` +### Namespace + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#88" +public const string Namespace = "namespace." +``` +### NameWithType + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#80" +public const string NameWithType = "nameWithType." +``` +### Overload + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#99" +public const string Overload = "overload." +``` +### Overridden + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#90" +public const string Overridden = "overridden." +``` +### Parent + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#85" +public const string Parent = "parent." +``` +### Platform + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#97" +public const string Platform = "platform." +``` +### Return + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#98" +public const string Return = "return." +``` +### Source + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#87" +public const string Source = "source." +``` +### Spec + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#83" +public const string Spec = "spec." +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.MetadataName.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.MetadataName.md new file mode 100644 index 0000000..a3270a7 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.MetadataName.md @@ -0,0 +1,42 @@ +--- +title: Class Constants.MetadataName +sidebar_label: Constants.MetadataName +description: TODO +--- + +# Class Constants.MetadataName +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#73" +public static class Constants.MetadataName +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.MetadataName](../DocFxToTemplate.Models.DocFx/Constants.MetadataName) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### Version + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#75" +public const string Version = "version" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.PropertyName.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.PropertyName.md new file mode 100644 index 0000000..8077d6a --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.PropertyName.md @@ -0,0 +1,247 @@ +--- +title: Class Constants.PropertyName +sidebar_label: Constants.PropertyName +description: TODO +--- + +# Class Constants.PropertyName +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#24" +public static class Constants.PropertyName +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.PropertyName](../DocFxToTemplate.Models.DocFx/Constants.PropertyName) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### AdditionalNotes + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#65" +public const string AdditionalNotes = "additionalNotes" +``` +### Assemblies + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#53" +public const string Assemblies = "assemblies" +``` +### Children + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#51" +public const string Children = "children" +``` +### CommentId + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#27" +public const string CommentId = "commentId" +``` +### Conceptual + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#36" +public const string Conceptual = "conceptual" +``` +### Content + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#45" +public const string Content = "content" +``` +### DerivedClasses + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#57" +public const string DerivedClasses = "derivedClasses" +``` +### DisplayName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#42" +public const string DisplayName = "displayName" +``` +### Documentation + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#37" +public const string Documentation = "documentation" +``` +### DocumentType + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#33" +public const string DocumentType = "documentType" +``` +### Exceptions + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#55" +public const string Exceptions = "exceptions" +``` +### ExtensionMethods + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#60" +public const string ExtensionMethods = "extensionMethods" +``` +### FullName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#44" +public const string FullName = "fullName" +``` +### Href + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#29" +public const string Href = "href" +``` +### Id + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#28" +public const string Id = "id" +``` +### Implements + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#58" +public const string Implements = "implements" +``` +### Inheritance + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#56" +public const string Inheritance = "inheritance" +``` +### InheritedMembers + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#59" +public const string InheritedMembers = "inheritedMembers" +``` +### IsEii + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#39" +public const string IsEii = "isEii" +``` +### Name + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#41" +public const string Name = "name" +``` +### Namespace + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#52" +public const string Namespace = "namespace" +``` +### NameWithType + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#43" +public const string NameWithType = "nameWithType" +``` +### OutputFileName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#68" +public const string OutputFileName = "outputFileName" +``` +### Overload + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#61" +public const string Overload = "overload" +``` +### Overridden + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#54" +public const string Overridden = "overridden" +``` +### Parent + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#50" +public const string Parent = "parent" +``` +### Path + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#32" +public const string Path = "path" +``` +### Platform + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#49" +public const string Platform = "platform" +``` +### RedirectUrl + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#70" +public const string RedirectUrl = "redirect_url" +``` +### Return + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#62" +public const string Return = "return" +``` +### SeeAlsoContent + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#63" +public const string SeeAlsoContent = "seealsoContent" +``` +### Source + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#31" +public const string Source = "source" +``` +### Summary + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#38" +public const string Summary = "summary" +``` +### Syntax + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#64" +public const string Syntax = "syntax" +``` +### SystemKeys + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#66" +public const string SystemKeys = "_systemKeys" +``` +### Title + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#34" +public const string Title = "title" +``` +### TitleOverwriteH1 + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#35" +public const string TitleOverwriteH1 = "titleOverwriteH1" +``` +### TocHref + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#46" +public const string TocHref = "tocHref" +``` +### TopicHref + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#47" +public const string TopicHref = "topicHref" +``` +### TopicUid + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#48" +public const string TopicUid = "topicUid" +``` +### Type + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#30" +public const string Type = "type" +``` +### Uid + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#26" +public const string Uid = "uid" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.Switches.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.Switches.md new file mode 100644 index 0000000..aa4fbab --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.Switches.md @@ -0,0 +1,53 @@ +--- +title: Class Constants.Switches +sidebar_label: Constants.Switches +description: TODO +--- + +# Class Constants.Switches +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#148" +public static class Constants.Switches +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.Switches](../DocFxToTemplate.Models.DocFx/Constants.Switches) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### IsDotnetToolsMode + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#152" +public static bool IsDotnetToolsMode { get; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + + + +## Fields +### DotnetToolMode + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#150" +public const string DotnetToolMode = "Docfx.DotnetToolMode" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.TableOfContents.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.TableOfContents.md new file mode 100644 index 0000000..89548c8 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.TableOfContents.md @@ -0,0 +1,47 @@ +--- +title: Class Constants.TableOfContents +sidebar_label: Constants.TableOfContents +description: TODO +--- + +# Class Constants.TableOfContents +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#108" +public static class Constants.TableOfContents +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants.TableOfContents](../DocFxToTemplate.Models.DocFx/Constants.TableOfContents) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### MarkdownTocFileName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#110" +public const string MarkdownTocFileName = "toc.md" +``` +### YamlTocFileName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#111" +public const string YamlTocFileName = "toc.yml" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.md new file mode 100644 index 0000000..13bc962 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/Constants.md @@ -0,0 +1,62 @@ +--- +title: Class Constants +sidebar_label: Constants +description: TODO +--- + +# Class Constants +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#7" +public static class Constants +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Constants](../DocFxToTemplate.Models.DocFx/Constants) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + +## Fields +### ConfigFileName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#9" +public const string ConfigFileName = "docfx.json" +``` +### ContentPlaceholder + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#11" +public const string ContentPlaceholder = "*content" +``` +### PrefixSeparator + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#12" +public const string PrefixSeparator = "." +``` +### TocYamlFileName + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#13" +public const string TocYamlFileName = "toc.yml" +``` +### YamlExtension + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\Constants.cs#10" +public const string YamlExtension = ".yml" +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/DocFxToTemplate.Models.DocFx.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/DocFxToTemplate.Models.DocFx.md new file mode 100644 index 0000000..a846c87 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/DocFxToTemplate.Models.DocFx.md @@ -0,0 +1,69 @@ +--- +title: Namespace DocFxToTemplate.Models.DocFx +sidebar_label: DocFxToTemplate.Models.DocFx +--- + +# Namespace DocFxToTemplate.Models.DocFx + +## Classes +### [AdditionalNotes](../DocFxToTemplate.Models.DocFx/AdditionalNotes) + +### [ApiParameter](../DocFxToTemplate.Models.DocFx/ApiParameter) + +### [ArgumentInfo](../DocFxToTemplate.Models.DocFx/ArgumentInfo) + +### [AttributeInfo](../DocFxToTemplate.Models.DocFx/AttributeInfo) + +### [CompositeDictionary](../DocFxToTemplate.Models.DocFx/CompositeDictionary) + +### [CompositeDictionary.Builder](../DocFxToTemplate.Models.DocFx/CompositeDictionary.Builder) + +### [Constants](../DocFxToTemplate.Models.DocFx/Constants) + +### [Constants.DevLang](../DocFxToTemplate.Models.DocFx/Constants.DevLang) + +### [Constants.DocumentType](../DocFxToTemplate.Models.DocFx/Constants.DocumentType) + +### [Constants.EnvironmentVariables](../DocFxToTemplate.Models.DocFx/Constants.EnvironmentVariables) + +### [Constants.ExtensionMemberPrefix](../DocFxToTemplate.Models.DocFx/Constants.ExtensionMemberPrefix) + +### [Constants.MetadataName](../DocFxToTemplate.Models.DocFx/Constants.MetadataName) + +### [Constants.PropertyName](../DocFxToTemplate.Models.DocFx/Constants.PropertyName) + +### [Constants.Switches](../DocFxToTemplate.Models.DocFx/Constants.Switches) + +### [Constants.TableOfContents](../DocFxToTemplate.Models.DocFx/Constants.TableOfContents) + +### [ExceptionInfo](../DocFxToTemplate.Models.DocFx/ExceptionInfo) + +### [GitDetail](../DocFxToTemplate.Models.DocFx/GitDetail) + +### [ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel) + +### [LinkInfo](../DocFxToTemplate.Models.DocFx/LinkInfo) + +### [MarkdownLink](../DocFxToTemplate.Models.DocFx/MarkdownLink) + +### [NamedArgumentInfo](../DocFxToTemplate.Models.DocFx/NamedArgumentInfo) + +### [PageViewModel](../DocFxToTemplate.Models.DocFx/PageViewModel) + +### [ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel) + +### [SourceDetail](../DocFxToTemplate.Models.DocFx/SourceDetail) + +### [SpecViewModel](../DocFxToTemplate.Models.DocFx/SpecViewModel) + +### [SyntaxDetailViewModel](../DocFxToTemplate.Models.DocFx/SyntaxDetailViewModel) + +### [TocItemViewModel](../DocFxToTemplate.Models.DocFx/TocItemViewModel) + +## Enums +### [LinkType](../DocFxToTemplate.Models.DocFx/LinkType) + +### [MemberType](../DocFxToTemplate.Models.DocFx/MemberType) + +### [SyntaxLanguage](../DocFxToTemplate.Models.DocFx/SyntaxLanguage) + diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/ExceptionInfo.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/ExceptionInfo.md new file mode 100644 index 0000000..14efd28 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/ExceptionInfo.md @@ -0,0 +1,74 @@ +--- +title: Class ExceptionInfo +sidebar_label: ExceptionInfo +description: TODO +--- + +# Class ExceptionInfo +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs#9" +public class ExceptionInfo +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[ExceptionInfo](../DocFxToTemplate.Models.DocFx/ExceptionInfo) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### CommentId + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs#17" +[YamlMember(Alias = "commentId")] +[JsonPropertyName("commentId")] +public string CommentId { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Description + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs#21" +[YamlMember(Alias = "description")] +[JsonPropertyName("description")] +public string Description { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Type + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ExceptionInfo.cs#11" +[YamlMember(Alias = "type")] +[MergeOption(MergeOption.MergeKey)] +[JsonPropertyName("type")] +public string Type { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/GitDetail.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/GitDetail.md new file mode 100644 index 0000000..f0283df --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/GitDetail.md @@ -0,0 +1,76 @@ +--- +title: Class GitDetail +sidebar_label: GitDetail +description: TODO +--- + +# Class GitDetail +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs#8" +public record GitDetail : IEquatable +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[GitDetail](../DocFxToTemplate.Models.DocFx/GitDetail) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + +**Implements:** +System.IEquatable\ + +## Properties +### Branch + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs#17" +[YamlMember(Alias = "branch")] +[JsonPropertyName("branch")] +public string Branch { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Path +Relative path of current file to the Git Root Directory + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs#13" +[YamlMember(Alias = "path")] +[JsonPropertyName("path")] +public string Path { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Repo + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\GitDetail.cs#21" +[YamlMember(Alias = "repo")] +[JsonPropertyName("repo")] +public string Repo { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + +## Implements +* System.IEquatable\ + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/ItemViewModel.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/ItemViewModel.md new file mode 100644 index 0000000..198634d --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/ItemViewModel.md @@ -0,0 +1,718 @@ +--- +title: Class ItemViewModel +sidebar_label: ItemViewModel +description: TODO +--- + +# Class ItemViewModel +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#8" +public class ItemViewModel +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### AdditionalNotes + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#210" +[YamlMember(Alias = "additionalNotes")] +[JsonPropertyName("additionalNotes")] +public AdditionalNotes AdditionalNotes { get; set; } +``` + +#### Property Value +[AdditionalNotes](../DocFxToTemplate.Models.DocFx/AdditionalNotes) + +### AssemblyNameList + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#195" +[YamlMember(Alias = "assemblies")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("assemblies")] +public List? AssemblyNameList { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Attributes + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#293" +[YamlMember(Alias = "attributes")] +[JsonPropertyName("attributes")] +[MergeOption(MergeOption.Ignore)] +public List? Attributes { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[AttributeInfo](../DocFxToTemplate.Models.DocFx/AttributeInfo)> + +### Children + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#37" +[YamlMember(Alias = "children")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("children")] +public List? Children { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### CommentId + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#16" +[YamlMember(Alias = "commentId")] +[JsonPropertyName("commentId")] +public string? CommentId { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Conceptual + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#283" +[YamlMember(Alias = "conceptual")] +[JsonPropertyName("conceptual")] +public string Conceptual { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### DerivedClasses + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#259" +[YamlMember(Alias = "derivedClasses")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("derivedClasses")] +public List? DerivedClasses { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### DerivedClassesRefs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#36" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public List DerivedClassesRefs { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel)> + +### Documentation + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#191" +[YamlMember(Alias = "documentation")] +[JsonPropertyName("documentation")] +public SourceDetail Documentation { get; set; } +``` + +#### Property Value +[SourceDetail](../DocFxToTemplate.Models.DocFx/SourceDetail) + +### Events + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#26" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public ItemViewModel[] Events { get; set; } +``` + +#### Property Value +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel)[] + +### Examples + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#219" +[YamlMember(Alias = "example")] +[JsonPropertyName("example")] +[MergeOption(MergeOption.Replace)] +public List? Examples { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Exceptions + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#239" +[YamlMember(Alias = "exceptions")] +[JsonPropertyName("exceptions")] +public List? Exceptions { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ExceptionInfo](../DocFxToTemplate.Models.DocFx/ExceptionInfo)> + +### ExtensionMethods + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#277" +[YamlMember(Alias = "extensionMethods")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("extensionMethods")] +public List? ExtensionMethods { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### ExtensionMethodsRefs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#51" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public List ExtensionMethodsRefs { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel)> + +### Fields + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#16" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public ItemViewModel[] Fields { get; set; } +``` + +#### Property Value +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel)[] + +### FullName + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#139" +[YamlMember(Alias = "fullName")] +[JsonPropertyName("fullName")] +public string FullName { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### FullNameForCSharp + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#147" +[YamlIgnore] +[JsonIgnore] +public string FullNameForCSharp { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### FullNameForVB + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#165" +[YamlIgnore] +[JsonIgnore] +public string FullNameForVB { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### FullNames + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#143" +[ExtensibleMember("fullName.")] +[JsonIgnore] +public SortedList FullNames { get; set; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Href + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#43" +[YamlMember(Alias = "href")] +[JsonPropertyName("href")] +public string Href { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Id + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#20" +[YamlMember(Alias = "id")] +[JsonPropertyName("id")] +public string? Id { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Implements + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#265" +[YamlMember(Alias = "implements")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("implements")] +public List? Implements { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### ImplementsRefs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#41" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public List ImplementsRefs { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel)> + +### Inheritance + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#253" +[YamlMember(Alias = "inheritance")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("inheritance")] +public List? Inheritance { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### InheritanceRefs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#31" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public List InheritanceRefs { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel)> + +### InheritedMembers + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#271" +[YamlMember(Alias = "inheritedMembers")] +[MergeOption(MergeOption.Ignore)] +[JsonPropertyName("inheritedMembers")] +public List? InheritedMembers { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### InheritedMembersRefs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#46" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public List InheritedMembersRefs { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel)> + +### IsExplicitInterfaceImplementation + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#24" +[YamlMember(Alias = "isEii")] +[JsonPropertyName("isEii")] +public bool IsExplicitInterfaceImplementation { get; set; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + +### IsExtensionMethod + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#28" +[YamlMember(Alias = "isExtensionMethod")] +[JsonPropertyName("isExtensionMethod")] +public bool IsExtensionMethod { get; set; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + +### Link + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#57" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public MarkdownLink? Link { get; set; } +``` + +#### Property Value +[MarkdownLink](../DocFxToTemplate.Models.DocFx/MarkdownLink) + +### Metadata + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#298" +[ExtensibleMember] +[JsonIgnore] +public Dictionary Metadata { get; set; } +``` + +#### Property Value +[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [object](https://learn.microsoft.com/dotnet/api/system.object)> + +### Methods + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#21" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public ItemViewModel[] Methods { get; set; } +``` + +#### Property Value +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel)[] + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#51" +[YamlMember(Alias = "name")] +[JsonPropertyName("name")] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NameForCSharp + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#59" +[YamlIgnore] +[JsonIgnore] +public string NameForCSharp { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NameForVB + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#77" +[YamlIgnore] +[JsonIgnore] +public string NameForVB { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Names + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#55" +[ExtensibleMember("name.")] +[JsonIgnore] +public SortedList Names { get; set; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### NamespaceName + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#200" +[YamlMember(Alias = "namespace")] +[JsonPropertyName("namespace")] +public string NamespaceName { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NamesWithType + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#99" +[ExtensibleMember("nameWithType.")] +[JsonIgnore] +public SortedList NamesWithType { get; set; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### NameWithType + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#95" +[YamlMember(Alias = "nameWithType")] +[JsonPropertyName("nameWithType")] +public string NameWithType { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NameWithTypeForCSharp + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#103" +[YamlIgnore] +[JsonIgnore] +public string NameWithTypeForCSharp { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NameWithTypeForVB + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#121" +[YamlIgnore] +[JsonIgnore] +public string NameWithTypeForVB { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Overload + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#234" +[YamlMember(Alias = "overload")] +[JsonPropertyName("overload")] +public string Overload { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Overridden + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#229" +[YamlMember(Alias = "overridden")] +[JsonPropertyName("overridden")] +public string Overridden { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Parent + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#32" +[YamlMember(Alias = "parent")] +[JsonPropertyName("parent")] +public string Parent { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Platform + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#288" +[YamlMember(Alias = "platform")] +[JsonPropertyName("platform")] +[MergeOption(MergeOption.Replace)] +public List? Platform { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Properties + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#11" +[JsonIgnore] +[YamlIgnore] +[IgnoreDataMember] +public ItemViewModel[] Properties { get; set; } +``` + +#### Property Value +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel)[] + +### Remarks + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#214" +[YamlMember(Alias = "remarks")] +[JsonPropertyName("remarks")] +public string Remarks { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### SeeAlsos + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#243" +[YamlMember(Alias = "seealso")] +[JsonPropertyName("seealso")] +public List? SeeAlsos { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[LinkInfo](../DocFxToTemplate.Models.DocFx/LinkInfo)> + +### SeeAlsosUidReference + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#247" +[YamlIgnore] +[JsonIgnore] +public List SeeAlsosUidReference { get; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Source + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#187" +[YamlMember(Alias = "source")] +[JsonPropertyName("source")] +public SourceDetail? Source { get; set; } +``` + +#### Property Value +[SourceDetail](../DocFxToTemplate.Models.DocFx/SourceDetail) + +### Summary + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#205" +[YamlMember(Alias = "summary")] +[JsonPropertyName("summary")] +public string Summary { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### SupportedLanguages + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#47" +[YamlMember(Alias = "langs")] +[JsonPropertyName("langs")] +public string[] SupportedLanguages { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string)[] + +### Syntax + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#225" +[YamlMember(Alias = "syntax")] +[JsonPropertyName("syntax")] +public SyntaxDetailViewModel? Syntax { get; set; } +``` + +#### Property Value +[SyntaxDetailViewModel](../DocFxToTemplate.Models.DocFx/SyntaxDetailViewModel) + +### Type + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#183" +[YamlMember(Alias = "type")] +[JsonPropertyName("type")] +public MemberType? Type { get; set; } +``` + +#### Property Value +[MemberType](../DocFxToTemplate.Models.DocFx/MemberType)? + +### Uid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ItemViewModel.cs#11" +[YamlMember(Alias = "uid")] +[JsonPropertyName("uid")] +[MergeOption(MergeOption.MergeKey)] +public string? Uid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/LinkInfo.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/LinkInfo.md new file mode 100644 index 0000000..ec2c7cc --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/LinkInfo.md @@ -0,0 +1,88 @@ +--- +title: Class LinkInfo +sidebar_label: LinkInfo +description: TODO +--- + +# Class LinkInfo +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#9" +public class LinkInfo +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[LinkInfo](../DocFxToTemplate.Models.DocFx/LinkInfo) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### AltText + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#26" +[YamlMember(Alias = "altText")] +[JsonPropertyName("altText")] +public string AltText { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### CommentId + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#21" +[YamlMember(Alias = "commentId")] +[JsonPropertyName("commentId")] +[MergeOption(MergeOption.Ignore)] +public string CommentId { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### LinkId + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#16" +[YamlMember(Alias = "linkId")] +[MergeOption(MergeOption.MergeKey)] +[JsonPropertyName("linkId")] +public string LinkId { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### LinkType + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#11" +[YamlMember(Alias = "linkType")] +[JsonPropertyName("linkType")] +[MergeOption(MergeOption.Ignore)] +public LinkType LinkType { get; set; } +``` + +#### Property Value +[LinkType](../DocFxToTemplate.Models.DocFx/LinkType) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/LinkType.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/LinkType.md new file mode 100644 index 0000000..5582fc2 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/LinkType.md @@ -0,0 +1,44 @@ +--- +title: Enum LinkType +sidebar_label: LinkType +description: TODO +--- + +# Enum LinkType +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#36" +public enum LinkType +``` + + + + + + + + + +## Fields +### CRef + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#38" +CRef = 0 +``` +### HRef + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\LinkInfo.cs#39" +HRef = 1 +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/MarkdownLink.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/MarkdownLink.md new file mode 100644 index 0000000..997e513 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/MarkdownLink.md @@ -0,0 +1,60 @@ +--- +title: Class MarkdownLink +sidebar_label: MarkdownLink +description: TODO +--- + +# Class MarkdownLink +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#63" +public record MarkdownLink : IEquatable +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[MarkdownLink](../DocFxToTemplate.Models.DocFx/MarkdownLink) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + +**Implements:** +System.IEquatable\ + +## Properties +### AbsoluteAddress + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#63" +public string? AbsoluteAddress { get; init; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\ItemViewModel.cs#63" +public string Name { get; init; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + +## Implements +* System.IEquatable\ + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/MemberType.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/MemberType.md new file mode 100644 index 0000000..b570139 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/MemberType.md @@ -0,0 +1,124 @@ +--- +title: Enum MemberType +sidebar_label: MemberType +description: TODO +--- + +# Enum MemberType +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#5" +public enum MemberType +``` + + + + + + + + + +## Fields +### Assembly + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#9" +Assembly = 2 +``` +### AttachedEvent + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#23" +AttachedEvent = 16 +``` +### AttachedProperty + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#24" +AttachedProperty = 17 +``` +### Class + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#11" +Class = 4 +``` +### Constructor + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#19" +Constructor = 12 +``` +### Container + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#22" +Container = 15 +``` +### Default + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#7" +Default = 0 +``` +### Delegate + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#14" +Delegate = 7 +``` +### Enum + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#15" +Enum = 8 +``` +### Event + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#18" +Event = 11 +``` +### Field + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#16" +Field = 9 +``` +### Interface + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#12" +Interface = 5 +``` +### Method + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#20" +Method = 13 +``` +### Namespace + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#10" +Namespace = 3 +``` +### Operator + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#21" +Operator = 14 +``` +### Property + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#17" +Property = 10 +``` +### Struct + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#13" +Struct = 6 +``` +### Toc + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\MemberType.cs#8" +Toc = 1 +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/NamedArgumentInfo.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/NamedArgumentInfo.md new file mode 100644 index 0000000..71442f7 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/NamedArgumentInfo.md @@ -0,0 +1,73 @@ +--- +title: Class NamedArgumentInfo +sidebar_label: NamedArgumentInfo +description: TODO +--- + +# Class NamedArgumentInfo +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs#9" +public class NamedArgumentInfo +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[NamedArgumentInfo](../DocFxToTemplate.Models.DocFx/NamedArgumentInfo) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs#11" +[YamlMember(Alias = "name")] +[JsonPropertyName("name")] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Type + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs#15" +[YamlMember(Alias = "type")] +[JsonPropertyName("type")] +public string Type { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Value + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\NamedArgumentInfo.cs#20" +[YamlMember(Alias = "value")] +[JsonPropertyName("value")] +public object Value { get; set; } +``` + +#### Property Value +[object](https://learn.microsoft.com/dotnet/api/system.object) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/PageViewModel.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/PageViewModel.md new file mode 100644 index 0000000..2faf421 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/PageViewModel.md @@ -0,0 +1,84 @@ +--- +title: Class PageViewModel +sidebar_label: PageViewModel +description: TODO +--- + +# Class PageViewModel +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs#8" +public class PageViewModel +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[PageViewModel](../DocFxToTemplate.Models.DocFx/PageViewModel) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Items + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs#10" +[YamlMember(Alias = "items")] +[JsonPropertyName("items")] +public List Items { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel)> + +### Metadata + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs#23" +[JsonExtensionData] +public Dictionary Metadata { get; set; } +``` + +#### Property Value +[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [object](https://learn.microsoft.com/dotnet/api/system.object)> + +### References + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs#14" +[YamlMember(Alias = "references")] +[JsonPropertyName("references")] +public List References { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel)> + +### ShouldSkipMarkup + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\PageViewModel.cs#18" +[YamlMember(Alias = "shouldSkipMarkup")] +[JsonPropertyName("shouldSkipMarkup")] +public bool ShouldSkipMarkup { get; set; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/ReferenceViewModel.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/ReferenceViewModel.md new file mode 100644 index 0000000..6a6d08f --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/ReferenceViewModel.md @@ -0,0 +1,216 @@ +--- +title: Class ReferenceViewModel +sidebar_label: ReferenceViewModel +description: TODO +--- + +# Class ReferenceViewModel +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#9" +public class ReferenceViewModel +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[ReferenceViewModel](../DocFxToTemplate.Models.DocFx/ReferenceViewModel) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Additional + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#71" +[ExtensibleMember] +[JsonIgnore] +public Dictionary Additional { get; } +``` + +#### Property Value +[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [object](https://learn.microsoft.com/dotnet/api/system.object)> + +### CommentId + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#15" +[YamlMember(Alias = "commentId")] +[JsonPropertyName("commentId")] +public string CommentId { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Definition + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#23" +[YamlMember(Alias = "definition")] +[JsonPropertyName("definition")] +public string Definition { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### FullName + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#52" +[YamlMember(Alias = "fullName")] +[JsonPropertyName("fullName")] +public string FullName { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### FullNameInDevLangs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#56" +[ExtensibleMember("fullName.")] +[JsonIgnore] +public SortedList FullNameInDevLangs { get; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Href + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#32" +[YamlMember(Alias = "href")] +[JsonPropertyName("href")] +public string Href { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### IsExternal + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#28" +[YamlMember(Alias = "isExternal")] +[JsonPropertyName("isExternal")] +public bool? IsExternal { get; set; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean)? + +### Item + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#67" +[YamlIgnore] +[JsonIgnore] +public ItemViewModel? Item { get; set; } +``` + +#### Property Value +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel) + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#36" +[YamlMember(Alias = "name")] +[JsonPropertyName("name")] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NameInDevLangs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#40" +[ExtensibleMember("name.")] +[JsonIgnore] +public SortedList NameInDevLangs { get; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### NameWithType + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#44" +[YamlMember(Alias = "nameWithType")] +[JsonPropertyName("nameWithType")] +public string NameWithType { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### NameWithTypeInDevLangs + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#48" +[ExtensibleMember("nameWithType.")] +[JsonIgnore] +public SortedList NameWithTypeInDevLangs { get; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Parent + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#19" +[YamlMember(Alias = "parent")] +[JsonPropertyName("parent")] +public string Parent { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### SpecCsharp + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#64" +[YamlMember(Alias = "spec.csharp")] +public List SpecCsharp { get; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[SpecViewModel](../DocFxToTemplate.Models.DocFx/SpecViewModel)> + +### Uid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\ReferenceViewModel.cs#11" +[YamlMember(Alias = "uid")] +[JsonPropertyName("uid")] +public string Uid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/SourceDetail.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/SourceDetail.md new file mode 100644 index 0000000..2244602 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/SourceDetail.md @@ -0,0 +1,109 @@ +--- +title: Class SourceDetail +sidebar_label: SourceDetail +description: TODO +--- + +# Class SourceDetail +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#8" +public class SourceDetail +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[SourceDetail](../DocFxToTemplate.Models.DocFx/SourceDetail) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### EndLine + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#36" +[YamlMember(Alias = "endLine")] +[JsonPropertyName("endLine")] +public int EndLine { get; set; } +``` + +#### Property Value +[int](https://learn.microsoft.com/dotnet/api/system.int32) + +### Href +The url path for current source, should be resolved at some late stage + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#21" +[YamlMember(Alias = "href")] +[JsonPropertyName("href")] +public string Href { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#14" +[YamlMember(Alias = "id")] +[JsonPropertyName("id")] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Path +The local path for current source, should be resolved to be relative path at some late stage + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#28" +[YamlMember(Alias = "path")] +[JsonPropertyName("path")] +public string Path { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Remote + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#10" +[YamlMember(Alias = "remote")] +[JsonPropertyName("remote")] +public GitDetail Remote { get; set; } +``` + +#### Property Value +[GitDetail](../DocFxToTemplate.Models.DocFx/GitDetail) + +### StartLine + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SourceDetail.cs#32" +[YamlMember(Alias = "startLine")] +[JsonPropertyName("startLine")] +public int StartLine { get; set; } +``` + +#### Property Value +[int](https://learn.microsoft.com/dotnet/api/system.int32) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/SpecViewModel.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/SpecViewModel.md new file mode 100644 index 0000000..153e731 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/SpecViewModel.md @@ -0,0 +1,97 @@ +--- +title: Class SpecViewModel +sidebar_label: SpecViewModel +description: TODO +--- + +# Class SpecViewModel +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs#8" +public class SpecViewModel +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[SpecViewModel](../DocFxToTemplate.Models.DocFx/SpecViewModel) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Href + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs#22" +[YamlMember(Alias = "href")] +[JsonPropertyName("href")] +public string Href { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### IsExternal + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs#18" +[YamlMember(Alias = "isExternal")] +[JsonPropertyName("isExternal")] +public bool IsExternal { get; set; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + +### Item + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs#26" +[JsonIgnore] +[YamlIgnore] +public ItemViewModel? Item { get; set; } +``` + +#### Property Value +[ItemViewModel](../DocFxToTemplate.Models.DocFx/ItemViewModel) + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs#14" +[YamlMember(Alias = "name")] +[JsonPropertyName("name")] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Uid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SpecViewModel.cs#10" +[YamlMember(Alias = "uid")] +[JsonPropertyName("uid")] +public string Uid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/SyntaxDetailViewModel.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/SyntaxDetailViewModel.md new file mode 100644 index 0000000..0133d9d --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/SyntaxDetailViewModel.md @@ -0,0 +1,121 @@ +--- +title: Class SyntaxDetailViewModel +sidebar_label: SyntaxDetailViewModel +description: TODO +--- + +# Class SyntaxDetailViewModel +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#9" +public class SyntaxDetailViewModel +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[SyntaxDetailViewModel](../DocFxToTemplate.Models.DocFx/SyntaxDetailViewModel) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### Content + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#11" +[YamlMember(Alias = "content")] +[JsonPropertyName("content")] +public string Content { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### ContentForCSharp + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#19" +[YamlIgnore] +[JsonIgnore] +public string ContentForCSharp { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### ContentForVB + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#37" +[YamlIgnore] +[JsonIgnore] +public string ContentForVB { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Contents + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#15" +[ExtensibleMember("content.")] +[JsonIgnore] +public SortedList Contents { get; set; } +``` + +#### Property Value +[SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)> + +### Parameters + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#55" +[YamlMember(Alias = "parameters")] +[JsonPropertyName("parameters")] +public List? Parameters { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ApiParameter](../DocFxToTemplate.Models.DocFx/ApiParameter)> + +### Return + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#63" +[YamlMember(Alias = "return")] +[JsonPropertyName("return")] +public ApiParameter? Return { get; set; } +``` + +#### Property Value +[ApiParameter](../DocFxToTemplate.Models.DocFx/ApiParameter) + +### TypeParameters + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxDetailViewModel.cs#59" +[YamlMember(Alias = "typeParameters")] +[JsonPropertyName("typeParameters")] +public List? TypeParameters { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[ApiParameter](../DocFxToTemplate.Models.DocFx/ApiParameter)> + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/SyntaxLanguage.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/SyntaxLanguage.md new file mode 100644 index 0000000..674e356 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/SyntaxLanguage.md @@ -0,0 +1,49 @@ +--- +title: Enum SyntaxLanguage +sidebar_label: SyntaxLanguage +description: TODO +--- + +# Enum SyntaxLanguage +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs#5" +public enum SyntaxLanguage +``` + + + + + + + + + +## Fields +### CSharp + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs#8" +CSharp = 1 +``` +### Default + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs#7" +Default = 0 +``` +### VB + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\SyntaxLanguage.cs#9" +VB = 2 +``` + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Models.DocFx/TocItemViewModel.md b/docs/docs/api/DocFxToTemplate.Models.DocFx/TocItemViewModel.md new file mode 100644 index 0000000..4d08853 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Models.DocFx/TocItemViewModel.md @@ -0,0 +1,292 @@ +--- +title: Class TocItemViewModel +sidebar_label: TocItemViewModel +description: TODO +--- + +# Class TocItemViewModel +Namespace: DocFxToTemplate.Models.DocFx +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#10" +public class TocItemViewModel +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[TocItemViewModel](../DocFxToTemplate.Models.DocFx/TocItemViewModel) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals) + + + +## Properties +### AggregatedHref + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#48" +[YamlIgnore] +[JsonIgnore] +public string AggregatedHref { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### AggregatedUid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#74" +[YamlIgnore] +[JsonIgnore] +public string AggregatedUid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### DisplayName + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#20" +[YamlMember(Alias = "displayName")] +[JsonPropertyName("displayName")] +public string DisplayName { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Homepage + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#54" +[YamlMember(Alias = "homepage")] +[JsonPropertyName("homepage")] +public string Homepage { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### HomepageUid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#62" +[YamlMember(Alias = "homepageUid")] +[JsonPropertyName("homepageUid")] +public string HomepageUid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Href + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#24" +[YamlMember(Alias = "href")] +[JsonPropertyName("href")] +public string Href { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### IncludedFrom + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#50" +[YamlMember(Alias = "includedFrom")] +[JsonPropertyName("includedFrom")] +public string IncludedFrom { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### IsHrefUpdated + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#80" +[YamlIgnore] +[JsonIgnore] +public bool IsHrefUpdated { get; set; } +``` + +#### Property Value +[bool](https://learn.microsoft.com/dotnet/api/system.boolean) + +### Items + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#76" +[YamlMember(Alias = "items")] +[JsonPropertyName("items")] +public List Items { get; set; } +``` + +#### Property Value +[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)<[TocItemViewModel](../DocFxToTemplate.Models.DocFx/TocItemViewModel)> + +### Metadata + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#82" +[ExtensibleMember] +[JsonIgnore] +public Dictionary Metadata { get; set; } +``` + +#### Property Value +[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [object](https://learn.microsoft.com/dotnet/api/system.object)> + +### Name + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#16" +[YamlMember(Alias = "name")] +[JsonPropertyName("name")] +public string Name { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Order + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#70" +[YamlMember(Alias = "order")] +[JsonPropertyName("order")] +public int? Order { get; set; } +``` + +#### Property Value +[int](https://learn.microsoft.com/dotnet/api/system.int32)? + +### OriginalHomepage + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#58" +[YamlMember(Alias = "originalHomepage")] +[JsonPropertyName("originalHomepage")] +public string OriginalHomepage { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### OriginalHref + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#28" +[YamlMember(Alias = "originalHref")] +[JsonPropertyName("originalHref")] +public string OriginalHref { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### OriginalTocHref + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#36" +[YamlMember(Alias = "originalTocHref")] +[JsonPropertyName("originalTocHref")] +public string OriginalTocHref { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### OriginalTopicHref + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#44" +[YamlMember(Alias = "originalTopicHref")] +[JsonPropertyName("originalTopicHref")] +public string OriginalTopicHref { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### TocHref + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#32" +[YamlMember(Alias = "tocHref")] +[JsonPropertyName("tocHref")] +public string TocHref { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### TopicHref + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#40" +[YamlMember(Alias = "topicHref")] +[JsonPropertyName("topicHref")] +public string TopicHref { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### TopicUid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#66" +[YamlMember(Alias = "topicUid")] +[JsonPropertyName("topicUid")] +public string TopicUid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### Uid + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Models\DocFx\TocItemViewModel.cs#12" +[YamlMember(Alias = "uid")] +[JsonPropertyName("uid")] +public string Uid { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + +## Methods +### Clone() + + +#### Returns + [TocItemViewModel](../DocFxToTemplate.Models.DocFx/TocItemViewModel) + + +### ToString() +Returns a string that represents the current object. + +#### Returns + [string](https://learn.microsoft.com/dotnet/api/system.string) +A string that represents the current object. + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate.Templates/DocFxToTemplate.Templates.md b/docs/docs/api/DocFxToTemplate.Templates/DocFxToTemplate.Templates.md new file mode 100644 index 0000000..61de864 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Templates/DocFxToTemplate.Templates.md @@ -0,0 +1,10 @@ +--- +title: Namespace DocFxToTemplate.Templates +sidebar_label: DocFxToTemplate.Templates +--- + +# Namespace DocFxToTemplate.Templates + +## Classes +### [TemplateLoader](../DocFxToTemplate.Templates/TemplateLoader) + diff --git a/docs/docs/api/DocFxToTemplate.Templates/TemplateLoader.md b/docs/docs/api/DocFxToTemplate.Templates/TemplateLoader.md new file mode 100644 index 0000000..79b7c00 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate.Templates/TemplateLoader.md @@ -0,0 +1,83 @@ +--- +title: Class TemplateLoader +sidebar_label: TemplateLoader +description: TODO +--- + +# Class TemplateLoader +Namespace: DocFxToTemplate.Templates +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Templates\TemplateLoader.cs#6" +public class TemplateLoader : ITemplateLoader +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[TemplateLoader](../DocFxToTemplate.Templates/TemplateLoader) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + +**Implements:** +Scriban.Runtime.ITemplateLoader + + + + + +## Methods +### GetPath(TemplateContext, SourceSpan, string) +Gets an absolute path for the specified include template name. Note that it is not necessarely a path on a disk, +but an absolute path that can be used as a dictionary key for caching) + +#### Parameters +`context` TemplateContext +The current context called from +`callerSpan` SourceSpan +The current span called from +`templateName` [string](https://learn.microsoft.com/dotnet/api/system.string) +The name of the template to load +#### Returns + [string](https://learn.microsoft.com/dotnet/api/system.string) +An absolute path or unique key for the specified template name + +### Load(TemplateContext, SourceSpan, string) +Loads a template using the specified template path/key. + +#### Parameters +`context` TemplateContext +The current context called from +`callerSpan` SourceSpan +The current span called from +`templatePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +The path/key previously returned by +#### Returns + [string](https://learn.microsoft.com/dotnet/api/system.string) +The content string loaded from the specified template path/key + +### LoadAsync(TemplateContext, SourceSpan, string) +Loads a template using the specified template path/key. + +#### Parameters +`context` TemplateContext +The current context called from +`callerSpan` SourceSpan +The current span called from +`templatePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +The path/key previously returned by +#### Returns + ValueTask<string> +The content string loaded from the specified template path/key + + + + + +## Implements +* Scriban.Runtime.ITemplateLoader + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate/DocFxToTemplate.md b/docs/docs/api/DocFxToTemplate/DocFxToTemplate.md new file mode 100644 index 0000000..ecd2457 --- /dev/null +++ b/docs/docs/api/DocFxToTemplate/DocFxToTemplate.md @@ -0,0 +1,12 @@ +--- +title: Namespace DocFxToTemplate +sidebar_label: DocFxToTemplate +--- + +# Namespace DocFxToTemplate + +## Classes +### [Generator](../DocFxToTemplate/Generator) + +### [GeneratorOptions](../DocFxToTemplate/GeneratorOptions) + diff --git a/docs/docs/api/DocFxToTemplate/Generator.md b/docs/docs/api/DocFxToTemplate/Generator.md new file mode 100644 index 0000000..4cdb48c --- /dev/null +++ b/docs/docs/api/DocFxToTemplate/Generator.md @@ -0,0 +1,44 @@ +--- +title: Class Generator +sidebar_label: Generator +description: TODO +--- + +# Class Generator +Namespace: DocFxToTemplate +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\Generator.cs#15" +public sealed class Generator +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[Generator](../DocFxToTemplate/Generator) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + + + + + +## Methods +### Generate() + + +#### Returns + [Task](https://learn.microsoft.com/dotnet/api/system.threading.tasks.task) + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/DocFxToTemplate/GeneratorOptions.md b/docs/docs/api/DocFxToTemplate/GeneratorOptions.md new file mode 100644 index 0000000..3e9d52a --- /dev/null +++ b/docs/docs/api/DocFxToTemplate/GeneratorOptions.md @@ -0,0 +1,67 @@ +--- +title: Class GeneratorOptions +sidebar_label: GeneratorOptions +description: TODO +--- + +# Class GeneratorOptions +Namespace: DocFxToTemplate +Assembly: DocFxToTemplate.dll + + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs#2" +public class GeneratorOptions +``` + +**Inheritance:** +[object](https://learn.microsoft.com/dotnet/api/system.object) <- +[GeneratorOptions](../DocFxToTemplate/GeneratorOptions) + +**Inherited Members:** +[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)), [object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)), [object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode), [object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype), [object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone), [object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals), [object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring) + + + +## Properties +### IndexSlug + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs#7" +public string IndexSlug { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### OutputPath + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs#5" +public required string OutputPath { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + +### YamlPath + + +```csharp title="T:\Projekty\DocFxToTemplate\src\DocFxToTemplate\GeneratorOptions.cs#4" +public required string YamlPath { get; set; } +``` + +#### Property Value +[string](https://learn.microsoft.com/dotnet/api/system.string) + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/api/index.md b/docs/docs/api/index.md new file mode 100644 index 0000000..d2bf18e --- /dev/null +++ b/docs/docs/api/index.md @@ -0,0 +1,19 @@ +--- +title: Index +sidebar_label: Index +sidebar_position: 0 +slug: /api +--- + +# API Index +## Namespaces + +* [DocFxToTemplate](DocFxToTemplate/DocFxToTemplate.md) +* [DocFxToTemplate.Example1](DocFxToTemplate.Example1/DocFxToTemplate.Example1.md) +* [DocFxToTemplate.Models.DocFx](DocFxToTemplate.Models.DocFx/DocFxToTemplate.Models.DocFx.md) +* [DocFxToTemplate.Models.DocFx.Attributes](DocFxToTemplate.Models.DocFx.Attributes/DocFxToTemplate.Models.DocFx.Attributes.md) +* [DocFxToTemplate.Templates](DocFxToTemplate.Templates/DocFxToTemplate.Templates.md) + + +--- +Generated using [DocFxToTemplate](https://github.com/k-wojcik/DocFxToTemplate). \ No newline at end of file diff --git a/docs/docs/index.md b/docs/docs/index.md new file mode 100644 index 0000000..cf97151 --- /dev/null +++ b/docs/docs/index.md @@ -0,0 +1 @@ +# DocFxToTemplate diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js new file mode 100644 index 0000000..c8e58c5 --- /dev/null +++ b/docs/docusaurus.config.js @@ -0,0 +1,123 @@ +// @ts-check +// `@type` JSDoc annotations allow editor autocompletion and type checking +// (when paired with `@ts-check`). +// There are various equivalent ways to declare your Docusaurus config. +// See: https://docusaurus.io/docs/api/docusaurus-config + +import {themes as prismThemes} from 'prism-react-renderer'; + +/** @type {import('@docusaurus/types').Config} */ +const config = { + title: 'DocFxToTemplate', + tagline: '', + favicon: 'img/favicon.ico', + + // Set the production url of your site here + url: 'https:///k-wojcik.github.io', + // Set the // pathname under which your site is served + // For GitHub pages deployment, it is often '//' + baseUrl: '/DocFxToTemplate/', + + // GitHub pages deployment config. + // If you aren't using GitHub pages, you don't need these. + organizationName: 'k-wojcik', // Usually your GitHub org/user name. + projectName: 'DocFxToTemplate', // Usually your repo name. + + onBrokenLinks: 'throw', + onBrokenMarkdownLinks: 'warn', + + // Even if you don't use internationalization, you can use this field to set + // useful metadata like html lang. For example, if your site is Chinese, you + // may want to replace "en" with "zh-Hans". + i18n: { + defaultLocale: 'en', + locales: ['en'], + }, + + presets: [ + [ + 'classic', + /** @type {import('@docusaurus/preset-classic').Options} */ + ({ + docs: { + sidebarPath: './sidebars.js', + // Please change this to your repo. + // Remove this to remove the "edit this page" links. + editUrl: 'https://github.com/k-wojcik/DocFxToTemplate/edit/master/docs/', + async sidebarItemsGenerator({defaultSidebarItemsGenerator, ...args}) { + filterSidebarItems(args); + return defaultSidebarItemsGenerator(args); + }, + }, + blog: false, + theme: { + customCss: './src/css/custom.css', + }, + }), + ], + ], + + markdown: { + }, + + themes: [ + [ + require.resolve("@easyops-cn/docusaurus-search-local"), + /** @type {import("@easyops-cn/docusaurus-search-local").PluginOptions} */ + ({ + hashed: true, + }), + ], + ], + + themeConfig: + /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ + ({ + // Replace with your project's social card + navbar: { + title: 'DocFxToTemplate', + logo: { + alt: 'DocFxToTemplate', + src: 'img/logo.svg', + }, + items: [ + { + type: 'docSidebar', + sidebarId: 'docsSidebar', + position: 'left', + label: 'Docs', + }, + { + type: 'docSidebar', + sidebarId: 'apiSidebar', + position: 'left', + label: 'API', + }, + { + href: 'https://github.com/k-wojcik/DocFxToTemplate', + label: 'GitHub', + position: 'right', + }, + ], + }, + footer: { + style: 'dark', + copyright: `Copyright © ${new Date().getFullYear()} DocFxToTemplate. Built with Docusaurus.`, + }, + prism: { + theme: prismThemes.github, + darkTheme: prismThemes.dracula, + additionalLanguages: ['csharp', 'bash', 'json'], + }, + }), +}; + +function filterSidebarItems(args) { + if (args.item.customProps != null + && args.item.customProps.exclude != null + && args.item.customProps.exclude.length > 0) { + args.docs = args.docs.filter(x => !args.item.customProps.exclude.some(path => x.id.startsWith(path))); + } +} + +export default config; diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 0000000..0dc3cdb --- /dev/null +++ b/docs/package.json @@ -0,0 +1,45 @@ +{ + "name": "docfx-docusaurus", + "version": "0.0.0", + "private": true, + "scripts": { + "docusaurus": "docusaurus", + "start": "docusaurus start", + "build": "docusaurus build", + "swizzle": "docusaurus swizzle", + "deploy": "docusaurus deploy", + "clear": "docusaurus clear", + "serve": "docusaurus serve", + "write-translations": "docusaurus write-translations", + "write-heading-ids": "docusaurus write-heading-ids" + }, + "dependencies": { + "@docusaurus/core": "^3.1.1", + "@docusaurus/preset-classic": "^3.1.1", + "@easyops-cn/docusaurus-search-local": "^0.40.1", + "@mdx-js/react": "^3.0.0", + "clsx": "^2.0.0", + "prism-react-renderer": "^2.3.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "devDependencies": { + "@docusaurus/module-type-aliases": "^3.1.1", + "@docusaurus/types": "^3.1.1" + }, + "browserslist": { + "production": [ + ">0.5%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 3 chrome version", + "last 3 firefox version", + "last 5 safari version" + ] + }, + "engines": { + "node": ">=18.0" + } +} diff --git a/docs/sidebars.js b/docs/sidebars.js new file mode 100644 index 0000000..37b09db --- /dev/null +++ b/docs/sidebars.js @@ -0,0 +1,41 @@ +/** + * Creating a sidebar enables you to: + - create an ordered group of docs + - render a sidebar for each doc of that group + - provide next/previous navigation + + The sidebars can be generated from the filesystem, or explicitly defined here. + + Create as many sidebars as you want. + */ + +// @ts-check + +/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ +const sidebars = { + // By default, Docusaurus generates a sidebar from the docs folder structure + docsSidebar: [ + { + type: 'autogenerated', + dirName: '.', + customProps: { + exclude: ['api/'], + } + }], + apiSidebar: [{type: 'autogenerated', dirName: 'api'}], + + // But you can create a sidebar manually + /* + tutorialSidebar: [ + 'intro', + 'hello', + { + type: 'category', + label: 'Tutorial', + items: ['tutorial-basics/create-a-document'], + }, + ], + */ +}; + +export default sidebars; diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css new file mode 100644 index 0000000..2bc6a4c --- /dev/null +++ b/docs/src/css/custom.css @@ -0,0 +1,30 @@ +/** + * Any CSS included here will be global. The classic template + * bundles Infima by default. Infima is a CSS framework designed to + * work well for content-centric websites. + */ + +/* You can override the default Infima variables here. */ +:root { + --ifm-color-primary: #2e8555; + --ifm-color-primary-dark: #29784c; + --ifm-color-primary-darker: #277148; + --ifm-color-primary-darkest: #205d3b; + --ifm-color-primary-light: #33925d; + --ifm-color-primary-lighter: #359962; + --ifm-color-primary-lightest: #3cad6e; + --ifm-code-font-size: 95%; + --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); +} + +/* For readability concerns, you should choose a lighter palette in dark mode. */ +[data-theme='dark'] { + --ifm-color-primary: #25c2a0; + --ifm-color-primary-dark: #21af90; + --ifm-color-primary-darker: #1fa588; + --ifm-color-primary-darkest: #1a8870; + --ifm-color-primary-light: #29d5b0; + --ifm-color-primary-lighter: #32d8b4; + --ifm-color-primary-lightest: #4fddbf; + --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); +} diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js new file mode 100644 index 0000000..a0ee961 --- /dev/null +++ b/docs/src/pages/index.js @@ -0,0 +1,13 @@ +import clsx from 'clsx'; +import Link from '@docusaurus/Link'; +import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; +import Layout from '@theme/Layout'; +import {Redirect} from '@docusaurus/router'; + +import Heading from '@theme/Heading'; +import styles from './index.module.css'; + + +export default function Home() { + return ; +} diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css new file mode 100644 index 0000000..9f71a5d --- /dev/null +++ b/docs/src/pages/index.module.css @@ -0,0 +1,23 @@ +/** + * CSS files with the .module.css suffix will be treated as CSS modules + * and scoped locally. + */ + +.heroBanner { + padding: 4rem 0; + text-align: center; + position: relative; + overflow: hidden; +} + +@media screen and (max-width: 996px) { + .heroBanner { + padding: 2rem; + } +} + +.buttons { + display: flex; + align-items: center; + justify-content: center; +} diff --git a/docs/static/.nojekyll b/docs/static/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/docs/static/img/favicon.ico b/docs/static/img/favicon.ico new file mode 100644 index 0000000..c01d54b Binary files /dev/null and b/docs/static/img/favicon.ico differ diff --git a/docs/static/img/logo.svg b/docs/static/img/logo.svg new file mode 100644 index 0000000..9db6d0d --- /dev/null +++ b/docs/static/img/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/yarn.lock b/docs/yarn.lock new file mode 100644 index 0000000..06c38ff --- /dev/null +++ b/docs/yarn.lock @@ -0,0 +1,8567 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@algolia/autocomplete-core@1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz#1d56482a768c33aae0868c8533049e02e8961be7" + integrity sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw== + dependencies: + "@algolia/autocomplete-plugin-algolia-insights" "1.9.3" + "@algolia/autocomplete-shared" "1.9.3" + +"@algolia/autocomplete-plugin-algolia-insights@1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz#9b7f8641052c8ead6d66c1623d444cbe19dde587" + integrity sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg== + dependencies: + "@algolia/autocomplete-shared" "1.9.3" + +"@algolia/autocomplete-preset-algolia@1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz#64cca4a4304cfcad2cf730e83067e0c1b2f485da" + integrity sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA== + dependencies: + "@algolia/autocomplete-shared" "1.9.3" + +"@algolia/autocomplete-shared@1.9.3": + version "1.9.3" + resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz#2e22e830d36f0a9cf2c0ccd3c7f6d59435b77dfa" + integrity sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ== + +"@algolia/cache-browser-local-storage@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.22.1.tgz#14b6dc9abc9e3a304a5fffb063d15f30af1032d1" + integrity sha512-Sw6IAmOCvvP6QNgY9j+Hv09mvkvEIDKjYW8ow0UDDAxSXy664RBNQk3i/0nt7gvceOJ6jGmOTimaZoY1THmU7g== + dependencies: + "@algolia/cache-common" "4.22.1" + +"@algolia/cache-common@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.22.1.tgz#c625dff4bc2a74e79f9aed67b4e053b0ef1b3ec1" + integrity sha512-TJMBKqZNKYB9TptRRjSUtevJeQVXRmg6rk9qgFKWvOy8jhCPdyNZV1nB3SKGufzvTVbomAukFR8guu/8NRKBTA== + +"@algolia/cache-in-memory@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.22.1.tgz#858a3d887f521362e87d04f3943e2810226a0d71" + integrity sha512-ve+6Ac2LhwpufuWavM/aHjLoNz/Z/sYSgNIXsinGofWOysPilQZPUetqLj8vbvi+DHZZaYSEP9H5SRVXnpsNNw== + dependencies: + "@algolia/cache-common" "4.22.1" + +"@algolia/client-account@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.22.1.tgz#a7fb8b66b9a4f0a428e1426b2561144267d76d43" + integrity sha512-k8m+oegM2zlns/TwZyi4YgCtyToackkOpE+xCaKCYfBfDtdGOaVZCM5YvGPtK+HGaJMIN/DoTL8asbM3NzHonw== + dependencies: + "@algolia/client-common" "4.22.1" + "@algolia/client-search" "4.22.1" + "@algolia/transporter" "4.22.1" + +"@algolia/client-analytics@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.22.1.tgz#506558740b4d49b1b1e3393861f729a8ce921851" + integrity sha512-1ssi9pyxyQNN4a7Ji9R50nSdISIumMFDwKNuwZipB6TkauJ8J7ha/uO60sPJFqQyqvvI+px7RSNRQT3Zrvzieg== + dependencies: + "@algolia/client-common" "4.22.1" + "@algolia/client-search" "4.22.1" + "@algolia/requester-common" "4.22.1" + "@algolia/transporter" "4.22.1" + +"@algolia/client-common@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.22.1.tgz#042b19c1b6157c485fa1b551349ab313944d2b05" + integrity sha512-IvaL5v9mZtm4k4QHbBGDmU3wa/mKokmqNBqPj0K7lcR8ZDKzUorhcGp/u8PkPC/e0zoHSTvRh7TRkGX3Lm7iOQ== + dependencies: + "@algolia/requester-common" "4.22.1" + "@algolia/transporter" "4.22.1" + +"@algolia/client-personalization@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.22.1.tgz#ff088d797648224fb582e9fe5828f8087835fa3d" + integrity sha512-sl+/klQJ93+4yaqZ7ezOttMQ/nczly/3GmgZXJ1xmoewP5jmdP/X/nV5U7EHHH3hCUEHeN7X1nsIhGPVt9E1cQ== + dependencies: + "@algolia/client-common" "4.22.1" + "@algolia/requester-common" "4.22.1" + "@algolia/transporter" "4.22.1" + +"@algolia/client-search@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.22.1.tgz#508cc6ab3d1f4e9c02735a630d4dff6fbb8514a2" + integrity sha512-yb05NA4tNaOgx3+rOxAmFztgMTtGBi97X7PC3jyNeGiwkAjOZc2QrdZBYyIdcDLoI09N0gjtpClcackoTN0gPA== + dependencies: + "@algolia/client-common" "4.22.1" + "@algolia/requester-common" "4.22.1" + "@algolia/transporter" "4.22.1" + +"@algolia/events@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@algolia/events/-/events-4.0.1.tgz#fd39e7477e7bc703d7f893b556f676c032af3950" + integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== + +"@algolia/logger-common@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.22.1.tgz#79cf4cd295de0377a94582c6aaac59b1ded731d9" + integrity sha512-OnTFymd2odHSO39r4DSWRFETkBufnY2iGUZNrMXpIhF5cmFE8pGoINNPzwg02QLBlGSaLqdKy0bM8S0GyqPLBg== + +"@algolia/logger-console@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.22.1.tgz#0355345f6940f67aaa78ae9b81c06e44e49f2336" + integrity sha512-O99rcqpVPKN1RlpgD6H3khUWylU24OXlzkavUAMy6QZd1776QAcauE3oP8CmD43nbaTjBexZj2nGsBH9Tc0FVA== + dependencies: + "@algolia/logger-common" "4.22.1" + +"@algolia/requester-browser-xhr@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.22.1.tgz#f04df6fe9690a071b267c77d26b83a3be9280361" + integrity sha512-dtQGYIg6MteqT1Uay3J/0NDqD+UciHy3QgRbk7bNddOJu+p3hzjTRYESqEnoX/DpEkaNYdRHUKNylsqMpgwaEw== + dependencies: + "@algolia/requester-common" "4.22.1" + +"@algolia/requester-common@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.22.1.tgz#27be35f3718aafcb6b388ff9c3aa2defabd559ff" + integrity sha512-dgvhSAtg2MJnR+BxrIFqlLtkLlVVhas9HgYKMk2Uxiy5m6/8HZBL40JVAMb2LovoPFs9I/EWIoFVjOrFwzn5Qg== + +"@algolia/requester-node-http@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.22.1.tgz#589a6fa828ad0f325e727a6fcaf4e1a2343cc62b" + integrity sha512-JfmZ3MVFQkAU+zug8H3s8rZ6h0ahHZL/SpMaSasTCGYR5EEJsCc8SI5UZ6raPN2tjxa5bxS13BRpGSBUens7EA== + dependencies: + "@algolia/requester-common" "4.22.1" + +"@algolia/transporter@4.22.1": + version "4.22.1" + resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.22.1.tgz#8843841b857dc021668f31647aa557ff19cd9cb1" + integrity sha512-kzWgc2c9IdxMa3YqA6TN0NW5VrKYYW/BELIn7vnLyn+U/RFdZ4lxxt9/8yq3DKV5snvoDzzO4ClyejZRdV3lMQ== + dependencies: + "@algolia/cache-common" "4.22.1" + "@algolia/logger-common" "4.22.1" + "@algolia/requester-common" "4.22.1" + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.8.3": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== + dependencies: + "@babel/highlight" "^7.23.4" + chalk "^2.4.2" + +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== + +"@babel/core@^7.19.6", "@babel/core@^7.23.3": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.0.tgz#56cbda6b185ae9d9bed369816a8f4423c5f2ff1b" + integrity sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.24.0" + "@babel/parser" "^7.24.0" + "@babel/template" "^7.24.0" + "@babel/traverse" "^7.24.0" + "@babel/types" "^7.24.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.23.3", "@babel/generator@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== + dependencies: + "@babel/types" "^7.23.6" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" + integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.6": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.0.tgz#fc7554141bdbfa2d17f7b4b80153b9b090e5d158" + integrity sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" + integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b" + integrity sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-define-polyfill-provider@^0.6.1": + version "0.6.1" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz#fadc63f0c2ff3c8d02ed905dcea747c5b0fb74fd" + integrity sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + +"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" + integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== + dependencies: + "@babel/types" "^7.23.0" + +"@babel/helper-module-imports@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz#945681931a52f15ce879fd5b86ce2dae6d3d7f2a" + integrity sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w== + +"@babel/helper-remap-async-to-generator@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" + integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-wrap-function" "^7.22.20" + +"@babel/helper-replace-supers@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" + integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-optimise-call-expression" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + +"@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + +"@babel/helper-wrap-function@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" + integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.15" + "@babel/types" "^7.22.19" + +"@babel/helpers@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.0.tgz#a3dd462b41769c95db8091e49cfe019389a9409b" + integrity sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA== + dependencies: + "@babel/template" "^7.24.0" + "@babel/traverse" "^7.24.0" + "@babel/types" "^7.24.0" + +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.22.7", "@babel/parser@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.0.tgz#26a3d1ff49031c53a97d03b604375f028746a9ac" + integrity sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" + integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" + integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.23.3" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7": + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b" + integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" + integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" + integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" + integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" + integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" + integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-async-generator-functions@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz#9adaeb66fc9634a586c5df139c6240d41ed801ce" + integrity sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" + integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== + dependencies: + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" + +"@babel/plugin-transform-block-scoped-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" + integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-block-scoping@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" + integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" + integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" + integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.23.8": + version "7.23.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92" + integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-split-export-declaration" "^7.22.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" + integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.15" + +"@babel/plugin-transform-destructuring@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" + integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dotall-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" + integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-duplicate-keys@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" + integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dynamic-import@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" + integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" + integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-export-namespace-from@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" + integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-for-of@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" + integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-function-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" + integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== + dependencies: + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-json-strings@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" + integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" + integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-logical-assignment-operators@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" + integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" + integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-amd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" + integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-commonjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" + integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + +"@babel/plugin-transform-modules-systemjs@^7.23.9": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz#105d3ed46e4a21d257f83a2f9e2ee4203ceda6be" + integrity sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/plugin-transform-modules-umd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" + integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== + dependencies: + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-new-target@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" + integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" + integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" + integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.0.tgz#7b836ad0088fdded2420ce96d4e1d3ed78b71df1" + integrity sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.23.3" + +"@babel/plugin-transform-object-super@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" + integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" + +"@babel/plugin-transform-optional-catch-binding@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" + integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" + integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" + integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-methods@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" + integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" + integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" + integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-constant-elements@^7.18.12": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz#5efc001d07ef0f7da0d73c3a86c132f73d28e43c" + integrity sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-display-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz#70529f034dd1e561045ad3c8152a267f0d7b6200" + integrity sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-jsx-development@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" + integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== + dependencies: + "@babel/plugin-transform-react-jsx" "^7.22.5" + +"@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312" + integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/types" "^7.23.4" + +"@babel/plugin-transform-react-pure-annotations@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz#fabedbdb8ee40edf5da96f3ecfc6958e3783b93c" + integrity sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-regenerator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" + integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" + integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-runtime@^7.22.9": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.0.tgz#e308fe27d08b74027d42547081eefaf4f2ffbcc9" + integrity sha512-zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA== + dependencies: + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + babel-plugin-polyfill-corejs2 "^0.4.8" + babel-plugin-polyfill-corejs3 "^0.9.0" + babel-plugin-polyfill-regenerator "^0.5.5" + semver "^6.3.1" + +"@babel/plugin-transform-shorthand-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" + integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-spread@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" + integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-sticky-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" + integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-template-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" + integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typeof-symbol@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" + integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typescript@^7.23.3": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz#aa36a94e5da8d94339ae3a4e22d40ed287feb34c" + integrity sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.23.6" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.23.3" + +"@babel/plugin-transform-unicode-escapes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" + integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-property-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" + integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" + integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-sets-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" + integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@^7.19.4", "@babel/preset-env@^7.22.9": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.0.tgz#11536a7f4b977294f0bdfad780f01a8ac8e183fc" + integrity sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.23.3" + "@babel/plugin-syntax-import-attributes" "^7.23.3" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.23.3" + "@babel/plugin-transform-async-generator-functions" "^7.23.9" + "@babel/plugin-transform-async-to-generator" "^7.23.3" + "@babel/plugin-transform-block-scoped-functions" "^7.23.3" + "@babel/plugin-transform-block-scoping" "^7.23.4" + "@babel/plugin-transform-class-properties" "^7.23.3" + "@babel/plugin-transform-class-static-block" "^7.23.4" + "@babel/plugin-transform-classes" "^7.23.8" + "@babel/plugin-transform-computed-properties" "^7.23.3" + "@babel/plugin-transform-destructuring" "^7.23.3" + "@babel/plugin-transform-dotall-regex" "^7.23.3" + "@babel/plugin-transform-duplicate-keys" "^7.23.3" + "@babel/plugin-transform-dynamic-import" "^7.23.4" + "@babel/plugin-transform-exponentiation-operator" "^7.23.3" + "@babel/plugin-transform-export-namespace-from" "^7.23.4" + "@babel/plugin-transform-for-of" "^7.23.6" + "@babel/plugin-transform-function-name" "^7.23.3" + "@babel/plugin-transform-json-strings" "^7.23.4" + "@babel/plugin-transform-literals" "^7.23.3" + "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" + "@babel/plugin-transform-member-expression-literals" "^7.23.3" + "@babel/plugin-transform-modules-amd" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-modules-systemjs" "^7.23.9" + "@babel/plugin-transform-modules-umd" "^7.23.3" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.23.3" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" + "@babel/plugin-transform-numeric-separator" "^7.23.4" + "@babel/plugin-transform-object-rest-spread" "^7.24.0" + "@babel/plugin-transform-object-super" "^7.23.3" + "@babel/plugin-transform-optional-catch-binding" "^7.23.4" + "@babel/plugin-transform-optional-chaining" "^7.23.4" + "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-private-methods" "^7.23.3" + "@babel/plugin-transform-private-property-in-object" "^7.23.4" + "@babel/plugin-transform-property-literals" "^7.23.3" + "@babel/plugin-transform-regenerator" "^7.23.3" + "@babel/plugin-transform-reserved-words" "^7.23.3" + "@babel/plugin-transform-shorthand-properties" "^7.23.3" + "@babel/plugin-transform-spread" "^7.23.3" + "@babel/plugin-transform-sticky-regex" "^7.23.3" + "@babel/plugin-transform-template-literals" "^7.23.3" + "@babel/plugin-transform-typeof-symbol" "^7.23.3" + "@babel/plugin-transform-unicode-escapes" "^7.23.3" + "@babel/plugin-transform-unicode-property-regex" "^7.23.3" + "@babel/plugin-transform-unicode-regex" "^7.23.3" + "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.8" + babel-plugin-polyfill-corejs3 "^0.9.0" + babel-plugin-polyfill-regenerator "^0.5.5" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-react@^7.18.6", "@babel/preset-react@^7.22.5": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.23.3.tgz#f73ca07e7590f977db07eb54dbe46538cc015709" + integrity sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-transform-react-display-name" "^7.23.3" + "@babel/plugin-transform-react-jsx" "^7.22.15" + "@babel/plugin-transform-react-jsx-development" "^7.22.5" + "@babel/plugin-transform-react-pure-annotations" "^7.23.3" + +"@babel/preset-typescript@^7.18.6", "@babel/preset-typescript@^7.22.5": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" + integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-typescript" "^7.23.3" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime-corejs3@^7.22.6": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.24.0.tgz#34243e29e369a762dd2a356fee65c3767973828a" + integrity sha512-HxiRMOncx3ly6f3fcZ1GVKf+/EROcI9qwPgmij8Czqy6Okm/0T37T4y2ZIlLUuEUFjtM7NRsfdCO8Y3tAiJZew== + dependencies: + core-js-pure "^3.30.2" + regenerator-runtime "^0.14.0" + +"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.22.6", "@babel/runtime@^7.8.4": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.0.tgz#584c450063ffda59697021430cb47101b085951e" + integrity sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.22.15", "@babel/template@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" + integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/parser" "^7.24.0" + "@babel/types" "^7.24.0" + +"@babel/traverse@^7.22.8", "@babel/traverse@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.0.tgz#4a408fbf364ff73135c714a2ab46a5eab2831b1e" + integrity sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.24.0" + "@babel/types" "^7.24.0" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.20.0", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.23.6", "@babel/types@^7.24.0", "@babel/types@^7.4.4": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" + integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== + dependencies: + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + +"@discoveryjs/json-ext@0.5.7": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + +"@docsearch/css@3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.6.0.tgz#0e9f56f704b3a34d044d15fd9962ebc1536ba4fb" + integrity sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ== + +"@docsearch/react@^3.5.2": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.6.0.tgz#b4f25228ecb7fc473741aefac592121e86dd2958" + integrity sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w== + dependencies: + "@algolia/autocomplete-core" "1.9.3" + "@algolia/autocomplete-preset-algolia" "1.9.3" + "@docsearch/css" "3.6.0" + algoliasearch "^4.19.1" + +"@docusaurus/core@3.1.1", "@docusaurus/core@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-3.1.1.tgz#29ce8df7a3d3d12ee8962d6d86133b87235ff17b" + integrity sha512-2nQfKFcf+MLEM7JXsXwQxPOmQAR6ytKMZVSx7tVi9HEm9WtfwBH1fp6bn8Gj4zLUhjWKCLoysQ9/Wm+EZCQ4yQ== + dependencies: + "@babel/core" "^7.23.3" + "@babel/generator" "^7.23.3" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-transform-runtime" "^7.22.9" + "@babel/preset-env" "^7.22.9" + "@babel/preset-react" "^7.22.5" + "@babel/preset-typescript" "^7.22.5" + "@babel/runtime" "^7.22.6" + "@babel/runtime-corejs3" "^7.22.6" + "@babel/traverse" "^7.22.8" + "@docusaurus/cssnano-preset" "3.1.1" + "@docusaurus/logger" "3.1.1" + "@docusaurus/mdx-loader" "3.1.1" + "@docusaurus/react-loadable" "5.5.2" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-common" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + "@slorber/static-site-generator-webpack-plugin" "^4.0.7" + "@svgr/webpack" "^6.5.1" + autoprefixer "^10.4.14" + babel-loader "^9.1.3" + babel-plugin-dynamic-import-node "^2.3.3" + boxen "^6.2.1" + chalk "^4.1.2" + chokidar "^3.5.3" + clean-css "^5.3.2" + cli-table3 "^0.6.3" + combine-promises "^1.1.0" + commander "^5.1.0" + copy-webpack-plugin "^11.0.0" + core-js "^3.31.1" + css-loader "^6.8.1" + css-minimizer-webpack-plugin "^4.2.2" + cssnano "^5.1.15" + del "^6.1.1" + detect-port "^1.5.1" + escape-html "^1.0.3" + eta "^2.2.0" + file-loader "^6.2.0" + fs-extra "^11.1.1" + html-minifier-terser "^7.2.0" + html-tags "^3.3.1" + html-webpack-plugin "^5.5.3" + leven "^3.1.0" + lodash "^4.17.21" + mini-css-extract-plugin "^2.7.6" + postcss "^8.4.26" + postcss-loader "^7.3.3" + prompts "^2.4.2" + react-dev-utils "^12.0.1" + react-helmet-async "^1.3.0" + react-loadable "npm:@docusaurus/react-loadable@5.5.2" + react-loadable-ssr-addon-v5-slorber "^1.0.1" + react-router "^5.3.4" + react-router-config "^5.1.1" + react-router-dom "^5.3.4" + rtl-detect "^1.0.4" + semver "^7.5.4" + serve-handler "^6.1.5" + shelljs "^0.8.5" + terser-webpack-plugin "^5.3.9" + tslib "^2.6.0" + update-notifier "^6.0.2" + url-loader "^4.1.1" + webpack "^5.88.1" + webpack-bundle-analyzer "^4.9.0" + webpack-dev-server "^4.15.1" + webpack-merge "^5.9.0" + webpackbar "^5.0.2" + +"@docusaurus/cssnano-preset@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-3.1.1.tgz#03a4cb8e6d41654d7ff5ed79fddd73fd224feea4" + integrity sha512-LnoIDjJWbirdbVZDMq+4hwmrTl2yHDnBf9MLG9qyExeAE3ac35s4yUhJI8yyTCdixzNfKit4cbXblzzqMu4+8g== + dependencies: + cssnano-preset-advanced "^5.3.10" + postcss "^8.4.26" + postcss-sort-media-queries "^4.4.1" + tslib "^2.6.0" + +"@docusaurus/logger@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-3.1.1.tgz#423e8270c00a57b1b3a0cc8a3ee0a4c522a68387" + integrity sha512-BjkNDpQzewcTnST8trx4idSoAla6zZ3w22NqM/UMcFtvYJgmoE4layuTzlfql3VFPNuivvj7BOExa/+21y4X2Q== + dependencies: + chalk "^4.1.2" + tslib "^2.6.0" + +"@docusaurus/mdx-loader@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-3.1.1.tgz#f79290abc5044bef1d7ecac4eccec887058b8e03" + integrity sha512-xN2IccH9+sv7TmxwsDJNS97BHdmlqWwho+kIVY4tcCXkp+k4QuzvWBeunIMzeayY4Fu13A6sAjHGv5qm72KyGA== + dependencies: + "@babel/parser" "^7.22.7" + "@babel/traverse" "^7.22.8" + "@docusaurus/logger" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + "@mdx-js/mdx" "^3.0.0" + "@slorber/remark-comment" "^1.0.0" + escape-html "^1.0.3" + estree-util-value-to-estree "^3.0.1" + file-loader "^6.2.0" + fs-extra "^11.1.1" + image-size "^1.0.2" + mdast-util-mdx "^3.0.0" + mdast-util-to-string "^4.0.0" + rehype-raw "^7.0.0" + remark-directive "^3.0.0" + remark-emoji "^4.0.0" + remark-frontmatter "^5.0.0" + remark-gfm "^4.0.0" + stringify-object "^3.3.0" + tslib "^2.6.0" + unified "^11.0.3" + unist-util-visit "^5.0.0" + url-loader "^4.1.1" + vfile "^6.0.1" + webpack "^5.88.1" + +"@docusaurus/module-type-aliases@3.1.1", "@docusaurus/module-type-aliases@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-3.1.1.tgz#b304402b0535a13ebd4c0db1c368d2604d54d02f" + integrity sha512-xBJyx0TMfAfVZ9ZeIOb1awdXgR4YJMocIEzTps91rq+hJDFJgJaylDtmoRhUxkwuYmNK1GJpW95b7DLztSBJ3A== + dependencies: + "@docusaurus/react-loadable" "5.5.2" + "@docusaurus/types" "3.1.1" + "@types/history" "^4.7.11" + "@types/react" "*" + "@types/react-router-config" "*" + "@types/react-router-dom" "*" + react-helmet-async "*" + react-loadable "npm:@docusaurus/react-loadable@5.5.2" + +"@docusaurus/plugin-content-blog@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.1.1.tgz#16f4fd723227b2158461bba6b9bcc18c1926f7ea" + integrity sha512-ew/3VtVoG3emoAKmoZl7oKe1zdFOsI0NbcHS26kIxt2Z8vcXKCUgK9jJJrz0TbOipyETPhqwq4nbitrY3baibg== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/logger" "3.1.1" + "@docusaurus/mdx-loader" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-common" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + cheerio "^1.0.0-rc.12" + feed "^4.2.2" + fs-extra "^11.1.1" + lodash "^4.17.21" + reading-time "^1.5.0" + srcset "^4.0.0" + tslib "^2.6.0" + unist-util-visit "^5.0.0" + utility-types "^3.10.0" + webpack "^5.88.1" + +"@docusaurus/plugin-content-docs@3.1.1", "@docusaurus/plugin-content-docs@^2 || ^3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.1.1.tgz#f2eddebf351dd8dd504a2c26061165c519e1f964" + integrity sha512-lhFq4E874zw0UOH7ujzxnCayOyAt0f9YPVYSb9ohxrdCM8B4szxitUw9rIX4V9JLLHVoqIJb6k+lJJ1jrcGJ0A== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/logger" "3.1.1" + "@docusaurus/mdx-loader" "3.1.1" + "@docusaurus/module-type-aliases" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + "@types/react-router-config" "^5.0.7" + combine-promises "^1.1.0" + fs-extra "^11.1.1" + js-yaml "^4.1.0" + lodash "^4.17.21" + tslib "^2.6.0" + utility-types "^3.10.0" + webpack "^5.88.1" + +"@docusaurus/plugin-content-pages@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.1.1.tgz#05aec68c2abeac2140c7a16d4c5b506bf4d19fb2" + integrity sha512-NQHncNRAJbyLtgTim9GlEnNYsFhuCxaCNkMwikuxLTiGIPH7r/jpb7O3f3jUMYMebZZZrDq5S7om9a6rvB/YCA== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/mdx-loader" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + fs-extra "^11.1.1" + tslib "^2.6.0" + webpack "^5.88.1" + +"@docusaurus/plugin-debug@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-3.1.1.tgz#cee5aae1fef288fb93f68894db79a2612e313d3f" + integrity sha512-xWeMkueM9wE/8LVvl4+Qf1WqwXmreMjI5Kgr7GYCDoJ8zu4kD+KaMhrh7py7MNM38IFvU1RfrGKacCEe2DRRfQ== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils" "3.1.1" + fs-extra "^11.1.1" + react-json-view-lite "^1.2.0" + tslib "^2.6.0" + +"@docusaurus/plugin-google-analytics@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.1.1.tgz#bfc58205b4fcaf3222e04f9c3542f3bef9804887" + integrity sha512-+q2UpWTqVi8GdlLoSlD5bS/YpxW+QMoBwrPrUH/NpvpuOi0Of7MTotsQf9JWd3hymZxl2uu1o3PIrbpxfeDFDQ== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + tslib "^2.6.0" + +"@docusaurus/plugin-google-gtag@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.1.1.tgz#7e8b5aa6847a12461c104a65a335f4a45dae2f28" + integrity sha512-0mMPiBBlQ5LFHTtjxuvt/6yzh8v7OxLi3CbeEsxXZpUzcKO/GC7UA1VOWUoBeQzQL508J12HTAlR3IBU9OofSw== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + "@types/gtag.js" "^0.0.12" + tslib "^2.6.0" + +"@docusaurus/plugin-google-tag-manager@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.1.1.tgz#e1aae4d821e786d133386b4ae6e6fe66a4bc0089" + integrity sha512-d07bsrMLdDIryDtY17DgqYUbjkswZQr8cLWl4tzXrt5OR/T/zxC1SYKajzB3fd87zTu5W5klV5GmUwcNSMXQXA== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + tslib "^2.6.0" + +"@docusaurus/plugin-sitemap@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.1.1.tgz#8828bf5e2922273aad207a35189f22913e6a0dfd" + integrity sha512-iJ4hCaMmDaUqRv131XJdt/C/jJQx8UreDWTRqZKtNydvZVh/o4yXGRRFOplea1D9b/zpwL1Y+ZDwX7xMhIOTmg== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/logger" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-common" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + fs-extra "^11.1.1" + sitemap "^7.1.1" + tslib "^2.6.0" + +"@docusaurus/preset-classic@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-3.1.1.tgz#15fd80012529dafd7e01cc0bce59d39ee6ad6bf5" + integrity sha512-jG4ys/hWYf69iaN/xOmF+3kjs4Nnz1Ay3CjFLDtYa8KdxbmUhArA9HmP26ru5N0wbVWhY+6kmpYhTJpez5wTyg== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/plugin-content-blog" "3.1.1" + "@docusaurus/plugin-content-docs" "3.1.1" + "@docusaurus/plugin-content-pages" "3.1.1" + "@docusaurus/plugin-debug" "3.1.1" + "@docusaurus/plugin-google-analytics" "3.1.1" + "@docusaurus/plugin-google-gtag" "3.1.1" + "@docusaurus/plugin-google-tag-manager" "3.1.1" + "@docusaurus/plugin-sitemap" "3.1.1" + "@docusaurus/theme-classic" "3.1.1" + "@docusaurus/theme-common" "3.1.1" + "@docusaurus/theme-search-algolia" "3.1.1" + "@docusaurus/types" "3.1.1" + +"@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": + version "5.5.2" + resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz#81aae0db81ecafbdaee3651f12804580868fa6ce" + integrity sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ== + dependencies: + "@types/react" "*" + prop-types "^15.6.2" + +"@docusaurus/theme-classic@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-3.1.1.tgz#0a188c787fc4bf2bb525cc30c7aa34e555ee96b8" + integrity sha512-GiPE/jbWM8Qv1A14lk6s9fhc0LhPEQ00eIczRO4QL2nAQJZXkjPG6zaVx+1cZxPFWbAsqSjKe2lqkwF3fGkQ7Q== + dependencies: + "@docusaurus/core" "3.1.1" + "@docusaurus/mdx-loader" "3.1.1" + "@docusaurus/module-type-aliases" "3.1.1" + "@docusaurus/plugin-content-blog" "3.1.1" + "@docusaurus/plugin-content-docs" "3.1.1" + "@docusaurus/plugin-content-pages" "3.1.1" + "@docusaurus/theme-common" "3.1.1" + "@docusaurus/theme-translations" "3.1.1" + "@docusaurus/types" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-common" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + "@mdx-js/react" "^3.0.0" + clsx "^2.0.0" + copy-text-to-clipboard "^3.2.0" + infima "0.2.0-alpha.43" + lodash "^4.17.21" + nprogress "^0.2.0" + postcss "^8.4.26" + prism-react-renderer "^2.3.0" + prismjs "^1.29.0" + react-router-dom "^5.3.4" + rtlcss "^4.1.0" + tslib "^2.6.0" + utility-types "^3.10.0" + +"@docusaurus/theme-common@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-3.1.1.tgz#5a16893928b8379c9e83aef01d753e7e142459e2" + integrity sha512-38urZfeMhN70YaXkwIGXmcUcv2CEYK/2l4b05GkJPrbEbgpsIZM3Xc+Js2ehBGGZmfZq8GjjQ5RNQYG+MYzCYg== + dependencies: + "@docusaurus/mdx-loader" "3.1.1" + "@docusaurus/module-type-aliases" "3.1.1" + "@docusaurus/plugin-content-blog" "3.1.1" + "@docusaurus/plugin-content-docs" "3.1.1" + "@docusaurus/plugin-content-pages" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-common" "3.1.1" + "@types/history" "^4.7.11" + "@types/react" "*" + "@types/react-router-config" "*" + clsx "^2.0.0" + parse-numeric-range "^1.3.0" + prism-react-renderer "^2.3.0" + tslib "^2.6.0" + utility-types "^3.10.0" + +"@docusaurus/theme-search-algolia@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.1.1.tgz#5170cd68cc59d150416b070bdc6d15c363ddf5e1" + integrity sha512-tBH9VY5EpRctVdaAhT+b1BY8y5dyHVZGFXyCHgTrvcXQy5CV4q7serEX7U3SveNT9zksmchPyct6i1sFDC4Z5g== + dependencies: + "@docsearch/react" "^3.5.2" + "@docusaurus/core" "3.1.1" + "@docusaurus/logger" "3.1.1" + "@docusaurus/plugin-content-docs" "3.1.1" + "@docusaurus/theme-common" "3.1.1" + "@docusaurus/theme-translations" "3.1.1" + "@docusaurus/utils" "3.1.1" + "@docusaurus/utils-validation" "3.1.1" + algoliasearch "^4.18.0" + algoliasearch-helper "^3.13.3" + clsx "^2.0.0" + eta "^2.2.0" + fs-extra "^11.1.1" + lodash "^4.17.21" + tslib "^2.6.0" + utility-types "^3.10.0" + +"@docusaurus/theme-translations@3.1.1", "@docusaurus/theme-translations@^2 || ^3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.1.1.tgz#117e91ba5e3a8178cb59f3028bf41de165a508c1" + integrity sha512-xvWQFwjxHphpJq5fgk37FXCDdAa2o+r7FX8IpMg+bGZBNXyWBu3MjZ+G4+eUVNpDhVinTc+j6ucL0Ain5KCGrg== + dependencies: + fs-extra "^11.1.1" + tslib "^2.6.0" + +"@docusaurus/types@3.1.1", "@docusaurus/types@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-3.1.1.tgz#747c9dee8cf7c3b0e5ee7351bac5e9c4fdc7f259" + integrity sha512-grBqOLnubUecgKFXN9q3uit2HFbCxTWX4Fam3ZFbMN0sWX9wOcDoA7lwdX/8AmeL20Oc4kQvWVgNrsT8bKRvzg== + dependencies: + "@mdx-js/mdx" "^3.0.0" + "@types/history" "^4.7.11" + "@types/react" "*" + commander "^5.1.0" + joi "^17.9.2" + react-helmet-async "^1.3.0" + utility-types "^3.10.0" + webpack "^5.88.1" + webpack-merge "^5.9.0" + +"@docusaurus/utils-common@3.1.1", "@docusaurus/utils-common@^2 || ^3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-3.1.1.tgz#b48fade63523fd40f3adb67b47c3371e5183c20b" + integrity sha512-eGne3olsIoNfPug5ixjepZAIxeYFzHHnor55Wb2P57jNbtVaFvij/T+MS8U0dtZRFi50QU+UPmRrXdVUM8uyMg== + dependencies: + tslib "^2.6.0" + +"@docusaurus/utils-validation@3.1.1", "@docusaurus/utils-validation@^2 || ^3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-3.1.1.tgz#3a747349ed05aee0e4d543552b41f3c9467ee731" + integrity sha512-KlY4P9YVDnwL+nExvlIpu79abfEv6ZCHuOX4ZQ+gtip+Wxj0daccdReIWWtqxM/Fb5Cz1nQvUCc7VEtT8IBUAA== + dependencies: + "@docusaurus/logger" "3.1.1" + "@docusaurus/utils" "3.1.1" + joi "^17.9.2" + js-yaml "^4.1.0" + tslib "^2.6.0" + +"@docusaurus/utils@3.1.1", "@docusaurus/utils@^2 || ^3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-3.1.1.tgz#e822d14704e4b3bb451ca464a7cc56aea9b55a45" + integrity sha512-ZJfJa5cJQtRYtqijsPEnAZoduW6sjAQ7ZCWSZavLcV10Fw0Z3gSaPKA/B4micvj2afRZ4gZxT7KfYqe5H8Cetg== + dependencies: + "@docusaurus/logger" "3.1.1" + "@svgr/webpack" "^6.5.1" + escape-string-regexp "^4.0.0" + file-loader "^6.2.0" + fs-extra "^11.1.1" + github-slugger "^1.5.0" + globby "^11.1.0" + gray-matter "^4.0.3" + jiti "^1.20.0" + js-yaml "^4.1.0" + lodash "^4.17.21" + micromatch "^4.0.5" + resolve-pathname "^3.0.0" + shelljs "^0.8.5" + tslib "^2.6.0" + url-loader "^4.1.1" + webpack "^5.88.1" + +"@easyops-cn/autocomplete.js@^0.38.1": + version "0.38.1" + resolved "https://registry.yarnpkg.com/@easyops-cn/autocomplete.js/-/autocomplete.js-0.38.1.tgz#46dff5795a9a032fa9b9250fdf63ca6c61c07629" + integrity sha512-drg76jS6syilOUmVNkyo1c7ZEBPcPuK+aJA7AksM5ZIIbV57DMHCywiCr+uHyv8BE5jUTU98j/H7gVrkHrWW3Q== + dependencies: + cssesc "^3.0.0" + immediate "^3.2.3" + +"@easyops-cn/docusaurus-search-local@^0.40.1": + version "0.40.1" + resolved "https://registry.yarnpkg.com/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.40.1.tgz#e3dc30f6ceb7a6b41f09e7e198d70274d3951b40" + integrity sha512-4HMFZMpKKdd5qq1nFB8cvrAkgzZ1kNxphVciI64YHtmDYGIthVGZVG6+Ci7AAhzCR+ixLJkYwtVekvuMLjr2ZQ== + dependencies: + "@docusaurus/plugin-content-docs" "^2 || ^3" + "@docusaurus/theme-translations" "^2 || ^3" + "@docusaurus/utils" "^2 || ^3" + "@docusaurus/utils-common" "^2 || ^3" + "@docusaurus/utils-validation" "^2 || ^3" + "@easyops-cn/autocomplete.js" "^0.38.1" + "@node-rs/jieba" "^1.6.0" + cheerio "^1.0.0-rc.3" + clsx "^1.1.1" + debug "^4.2.0" + fs-extra "^10.0.0" + klaw-sync "^6.0.0" + lunr "^2.3.9" + lunr-languages "^1.4.0" + mark.js "^8.11.1" + tslib "^2.4.0" + +"@emnapi/core@^0.45.0": + version "0.45.0" + resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-0.45.0.tgz#e58dc1f70ab3af3f6708991ba56d988088daf204" + integrity sha512-DPWjcUDQkCeEM4VnljEOEcXdAD7pp8zSZsgOujk/LGIwCXWbXJngin+MO4zbH429lzeC3WbYLGjE2MaUOwzpyw== + dependencies: + tslib "^2.4.0" + +"@emnapi/runtime@^0.45.0": + version "0.45.0" + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-0.45.0.tgz#e754de04c683263f34fd0c7f32adfe718bbe4ddd" + integrity sha512-Txumi3td7J4A/xTTwlssKieHKTGl3j4A1tglBx72auZ49YK7ePY6XZricgIg9mnZT4xPfA+UPCUdnhRuEFDL+w== + dependencies: + tslib "^2.4.0" + +"@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.1.0": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + +"@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" + integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + +"@mdx-js/mdx@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-3.0.1.tgz#617bd2629ae561fdca1bb88e3badd947f5a82191" + integrity sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA== + dependencies: + "@types/estree" "^1.0.0" + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdx" "^2.0.0" + collapse-white-space "^2.0.0" + devlop "^1.0.0" + estree-util-build-jsx "^3.0.0" + estree-util-is-identifier-name "^3.0.0" + estree-util-to-js "^2.0.0" + estree-walker "^3.0.0" + hast-util-to-estree "^3.0.0" + hast-util-to-jsx-runtime "^2.0.0" + markdown-extensions "^2.0.0" + periscopic "^3.0.0" + remark-mdx "^3.0.0" + remark-parse "^11.0.0" + remark-rehype "^11.0.0" + source-map "^0.7.0" + unified "^11.0.0" + unist-util-position-from-estree "^2.0.0" + unist-util-stringify-position "^4.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + +"@mdx-js/react@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.0.1.tgz#997a19b3a5b783d936c75ae7c47cfe62f967f746" + integrity sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A== + dependencies: + "@types/mdx" "^2.0.0" + +"@napi-rs/wasm-runtime@^0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-0.1.1.tgz#ec090e2f46bee2ed0c8486dd9d97ddca836ae30e" + integrity sha512-ATj9ua659JgrkICjJscaeZdmPr44cb/KFjNWuD0N6pux0SpzaM7+iOuuK11mAnQM2N9q0DT4REu6NkL8ZEhopw== + dependencies: + "@emnapi/core" "^0.45.0" + "@emnapi/runtime" "^0.45.0" + "@tybys/wasm-util" "^0.8.1" + +"@node-rs/jieba-android-arm-eabi@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-android-arm-eabi/-/jieba-android-arm-eabi-1.10.0.tgz#ef351c295f2380fbcad386965830d56b3c62cf04" + integrity sha512-bzusJSLHm7I0qL8aQXGLt7IQ51Px35yGGEcQ/Ps4SEt0AxRSJ2/rxNET/8mlwBpOCZ5xiKE3BOBRfQajiPiI3g== + +"@node-rs/jieba-android-arm64@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-android-arm64/-/jieba-android-arm64-1.10.0.tgz#96386a880e21f227848c54270b8937e139fb6d41" + integrity sha512-g89Oq5U2RPmtlvuQhjNj8YZc5Gq033ODb7Ot4Z/OdIHvg2WMxi2M1GQhcdKu60dO79/tazc53W6I8/y691DUfQ== + +"@node-rs/jieba-darwin-arm64@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-darwin-arm64/-/jieba-darwin-arm64-1.10.0.tgz#3c555b6152a0445c6d0d249cd3c761e922b39e69" + integrity sha512-IhR5r+XxFcfhVsF93zQ3uCJy8ndotRntXzoW/JCyKqOahUo/ITQRT6vTKHKMyD9xNmjl222OZonBSo2+mlI2fQ== + +"@node-rs/jieba-darwin-x64@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-darwin-x64/-/jieba-darwin-x64-1.10.0.tgz#2eff70d7900941b6598742545555228659a40c0f" + integrity sha512-MBIs8ixKY4FPnifdZ7eTx6ht85TXE4kFBK4c8A/VDAbnmzBzpEyuV7tHUA2wAdfR0muC9j7/5FB4kQGZgYfc8g== + +"@node-rs/jieba-freebsd-x64@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-freebsd-x64/-/jieba-freebsd-x64-1.10.0.tgz#fa0c4f66a09afa2d91af4295fe43dbc42d5c68c2" + integrity sha512-MuY+1QEXONxo3I/uFLFju0/pSN5bzQORhJkIdP8CYv+jZaVB4Uz6rC7A5HrgjiAXOna6QsKlRgx2bYyHfaBUrA== + +"@node-rs/jieba-linux-arm-gnueabihf@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-linux-arm-gnueabihf/-/jieba-linux-arm-gnueabihf-1.10.0.tgz#a9c302cd7d24b80e55434a1453aaf07ee03ca0c0" + integrity sha512-QfSBnwISdVuTqsi4iThAO1LSbKRSqSsIWiIJgCduhYsTDDiG9+pHyfiZtcTwSf73SDXHZ400QuBNONWLQ/dSag== + +"@node-rs/jieba-linux-arm64-gnu@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-linux-arm64-gnu/-/jieba-linux-arm64-gnu-1.10.0.tgz#ca7d088604d5424531ee43f3f91048abb44d5c84" + integrity sha512-vzA2tX/6dReEd/7tZ9927glWQmKDausM6R9S5CqZx4BA4NSaWAK0xFdWsz0K7np459FXqNavLdNB5FVFJb4zzA== + +"@node-rs/jieba-linux-arm64-musl@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-linux-arm64-musl/-/jieba-linux-arm64-musl-1.10.0.tgz#4adae202d08403c0d2e6e456b4548c9ce37d2b89" + integrity sha512-gxqoAVOQsn9sgYK6mFO9dsMZ/yOMvVecLZW5rGvLErjiugVvYUlESXIvCqxp2GSws8RtTqJj6p9u/lBmCCuvaw== + +"@node-rs/jieba-linux-x64-gnu@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-linux-x64-gnu/-/jieba-linux-x64-gnu-1.10.0.tgz#be258736b8591dcbd1211b73376b43beb3cdf7b6" + integrity sha512-rS5Shs8JITxJjFIjoIZ5a9O+GO21TJgKu03g2qwFE3QaN5ZOvXtz+/AqqyfT4GmmMhCujD83AGqfOGXDmItF9w== + +"@node-rs/jieba-linux-x64-musl@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-linux-x64-musl/-/jieba-linux-x64-musl-1.10.0.tgz#e674f5f58352f5a0bcb187e258982f0b45907bac" + integrity sha512-BvSiF2rR8Birh2oEVHcYwq0WGC1cegkEdddWsPrrSmpKmukJE2zyjcxaOOggq2apb8fIRsjyeeUh6X3R5AgjvA== + +"@node-rs/jieba-wasm32-wasi@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-wasm32-wasi/-/jieba-wasm32-wasi-1.10.0.tgz#9b22e08341e9021de8b4f7d025661b6ab648e73e" + integrity sha512-EzeAAbRrFTdYw61rd8Mfwdp/fA21d58z9vLY06CDbI+dqANfMFn1IUdwzKWi8S5J/MRhvbzonbbh3yHlz6F43Q== + dependencies: + "@napi-rs/wasm-runtime" "^0.1.1" + +"@node-rs/jieba-win32-arm64-msvc@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-win32-arm64-msvc/-/jieba-win32-arm64-msvc-1.10.0.tgz#b3883e59e6c8a01577f95cbee5783cebed468345" + integrity sha512-eZjRLFUAvq1/E5+xXfJRqIB99Gu6BA+6+EXf/rCLuvEjXrDQuUunhmrSoOL5MjmUXTtazS+bXq9PXV5EFYyOPw== + +"@node-rs/jieba-win32-ia32-msvc@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-win32-ia32-msvc/-/jieba-win32-ia32-msvc-1.10.0.tgz#1ed7909231773b9faf6f9cbcb0062696f851dc8b" + integrity sha512-DrfbeCN7UcLN+MiocZabWo74XZIjfpQsJ/WMOItZzVbU2gDcJSkSyAhML9+OqId66DhGCMFFlGinocElM8iIAw== + +"@node-rs/jieba-win32-x64-msvc@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba-win32-x64-msvc/-/jieba-win32-x64-msvc-1.10.0.tgz#25e399f74a08a1cd2b0673ea45c5efabf4c5e7e4" + integrity sha512-RjBkBmjjHmj+bofiq5/han8wzbCkDk24OAPJ+YX8PX20GFSHmdjCiWapv3AooN8/RiKqlBfgodjS1JUngNWo5g== + +"@node-rs/jieba@^1.6.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@node-rs/jieba/-/jieba-1.10.0.tgz#a8dc54e01a870e3d63d8789db405b555d9b4629f" + integrity sha512-9oZMCvZVnrAMeWTSnEjJ0OSw7YcV4dJJKSioqq80oUNf3eYLGdEXsgYwCe1AYEMcfUfNVgvjznItJKrsoud0IA== + optionalDependencies: + "@node-rs/jieba-android-arm-eabi" "1.10.0" + "@node-rs/jieba-android-arm64" "1.10.0" + "@node-rs/jieba-darwin-arm64" "1.10.0" + "@node-rs/jieba-darwin-x64" "1.10.0" + "@node-rs/jieba-freebsd-x64" "1.10.0" + "@node-rs/jieba-linux-arm-gnueabihf" "1.10.0" + "@node-rs/jieba-linux-arm64-gnu" "1.10.0" + "@node-rs/jieba-linux-arm64-musl" "1.10.0" + "@node-rs/jieba-linux-x64-gnu" "1.10.0" + "@node-rs/jieba-linux-x64-musl" "1.10.0" + "@node-rs/jieba-wasm32-wasi" "1.10.0" + "@node-rs/jieba-win32-arm64-msvc" "1.10.0" + "@node-rs/jieba-win32-ia32-msvc" "1.10.0" + "@node-rs/jieba-win32-x64-msvc" "1.10.0" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@pnpm/config.env-replace@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz#ab29da53df41e8948a00f2433f085f54de8b3a4c" + integrity sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== + +"@pnpm/network.ca-file@^1.0.1": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz#2ab05e09c1af0cdf2fcf5035bea1484e222f7983" + integrity sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== + dependencies: + graceful-fs "4.2.10" + +"@pnpm/npm-conf@^2.1.0": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz#0058baf1c26cbb63a828f0193795401684ac86f0" + integrity sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA== + dependencies: + "@pnpm/config.env-replace" "^1.1.0" + "@pnpm/network.ca-file" "^1.0.1" + config-chain "^1.1.11" + +"@polka/url@^1.0.0-next.24": + version "1.0.0-next.25" + resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.25.tgz#f077fdc0b5d0078d30893396ff4827a13f99e817" + integrity sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ== + +"@sideway/address@^4.1.5": + version "4.1.5" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.5.tgz#4bc149a0076623ced99ca8208ba780d65a99b9d5" + integrity sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" + integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + +"@sindresorhus/is@^4.6.0": + version "4.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" + integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== + +"@sindresorhus/is@^5.2.0": + version "5.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.6.0.tgz#41dd6093d34652cddb5d5bdeee04eafc33826668" + integrity sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g== + +"@slorber/remark-comment@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@slorber/remark-comment/-/remark-comment-1.0.0.tgz#2a020b3f4579c89dec0361673206c28d67e08f5a" + integrity sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA== + dependencies: + micromark-factory-space "^1.0.0" + micromark-util-character "^1.1.0" + micromark-util-symbol "^1.0.1" + +"@slorber/static-site-generator-webpack-plugin@^4.0.7": + version "4.0.7" + resolved "https://registry.yarnpkg.com/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.7.tgz#fc1678bddefab014e2145cbe25b3ce4e1cfc36f3" + integrity sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA== + dependencies: + eval "^0.1.8" + p-map "^4.0.0" + webpack-sources "^3.2.2" + +"@svgr/babel-plugin-add-jsx-attribute@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz#74a5d648bd0347bda99d82409d87b8ca80b9a1ba" + integrity sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ== + +"@svgr/babel-plugin-remove-jsx-attribute@*": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186" + integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== + +"@svgr/babel-plugin-remove-jsx-empty-expression@*": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44" + integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== + +"@svgr/babel-plugin-replace-jsx-attribute-value@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz#fb9d22ea26d2bc5e0a44b763d4c46d5d3f596c60" + integrity sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg== + +"@svgr/babel-plugin-svg-dynamic-title@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz#01b2024a2b53ffaa5efceaa0bf3e1d5a4c520ce4" + integrity sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw== + +"@svgr/babel-plugin-svg-em-dimensions@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz#dd3fa9f5b24eb4f93bcf121c3d40ff5facecb217" + integrity sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA== + +"@svgr/babel-plugin-transform-react-native-svg@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz#1d8e945a03df65b601551097d8f5e34351d3d305" + integrity sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg== + +"@svgr/babel-plugin-transform-svg-component@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz#48620b9e590e25ff95a80f811544218d27f8a250" + integrity sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ== + +"@svgr/babel-preset@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.5.1.tgz#b90de7979c8843c5c580c7e2ec71f024b49eb828" + integrity sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^6.5.1" + "@svgr/babel-plugin-remove-jsx-attribute" "*" + "@svgr/babel-plugin-remove-jsx-empty-expression" "*" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.5.1" + "@svgr/babel-plugin-svg-dynamic-title" "^6.5.1" + "@svgr/babel-plugin-svg-em-dimensions" "^6.5.1" + "@svgr/babel-plugin-transform-react-native-svg" "^6.5.1" + "@svgr/babel-plugin-transform-svg-component" "^6.5.1" + +"@svgr/core@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.5.1.tgz#d3e8aa9dbe3fbd747f9ee4282c1c77a27410488a" + integrity sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw== + dependencies: + "@babel/core" "^7.19.6" + "@svgr/babel-preset" "^6.5.1" + "@svgr/plugin-jsx" "^6.5.1" + camelcase "^6.2.0" + cosmiconfig "^7.0.1" + +"@svgr/hast-util-to-babel-ast@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz#81800bd09b5bcdb968bf6ee7c863d2288fdb80d2" + integrity sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw== + dependencies: + "@babel/types" "^7.20.0" + entities "^4.4.0" + +"@svgr/plugin-jsx@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz#0e30d1878e771ca753c94e69581c7971542a7072" + integrity sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw== + dependencies: + "@babel/core" "^7.19.6" + "@svgr/babel-preset" "^6.5.1" + "@svgr/hast-util-to-babel-ast" "^6.5.1" + svg-parser "^2.0.4" + +"@svgr/plugin-svgo@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz#0f91910e988fc0b842f88e0960c2862e022abe84" + integrity sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ== + dependencies: + cosmiconfig "^7.0.1" + deepmerge "^4.2.2" + svgo "^2.8.0" + +"@svgr/webpack@^6.5.1": + version "6.5.1" + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-6.5.1.tgz#ecf027814fc1cb2decc29dc92f39c3cf691e40e8" + integrity sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA== + dependencies: + "@babel/core" "^7.19.6" + "@babel/plugin-transform-react-constant-elements" "^7.18.12" + "@babel/preset-env" "^7.19.4" + "@babel/preset-react" "^7.18.6" + "@babel/preset-typescript" "^7.18.6" + "@svgr/core" "^6.5.1" + "@svgr/plugin-jsx" "^6.5.1" + "@svgr/plugin-svgo" "^6.5.1" + +"@szmarczak/http-timer@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" + integrity sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw== + dependencies: + defer-to-connect "^2.0.1" + +"@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + +"@tybys/wasm-util@^0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.8.1.tgz#10360976b7f679497ea8526791006417ff304abb" + integrity sha512-GSsTwyBl4pIzsxAY5wroZdyQKyhXk0d8PCRZtrSZ2WEB1cBdrp2EgGBwHOGCZtIIPun/DL3+AykCv+J6fyRH4Q== + dependencies: + tslib "^2.4.0" + +"@types/acorn@^4.0.0": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22" + integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== + dependencies: + "@types/estree" "*" + +"@types/body-parser@*": + version "1.19.5" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4" + integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bonjour@^3.5.9": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956" + integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== + dependencies: + "@types/node" "*" + +"@types/connect-history-api-fallback@^1.3.5": + version "1.5.4" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3" + integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.38" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== + dependencies: + "@types/node" "*" + +"@types/debug@^4.0.0": + version "4.1.12" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" + integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== + dependencies: + "@types/ms" "*" + +"@types/eslint-scope@^3.7.3": + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "8.56.5" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.5.tgz#94b88cab77588fcecdd0771a6d576fa1c0af9d02" + integrity sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree-jsx@^1.0.0": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.5.tgz#858a88ea20f34fe65111f005a689fa1ebf70dc18" + integrity sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg== + dependencies: + "@types/estree" "*" + +"@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": + version "4.17.43" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz#10d8444be560cb789c4735aea5eac6e5af45df54" + integrity sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express@*", "@types/express@^4.17.13": + version "4.17.21" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" + integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/gtag.js@^0.0.12": + version "0.0.12" + resolved "https://registry.yarnpkg.com/@types/gtag.js/-/gtag.js-0.0.12.tgz#095122edca896689bdfcdd73b057e23064d23572" + integrity sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg== + +"@types/hast@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.4.tgz#1d6b39993b82cea6ad783945b0508c25903e15aa" + integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== + dependencies: + "@types/unist" "*" + +"@types/history@^4.7.11": + version "4.7.11" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.11.tgz#56588b17ae8f50c53983a524fc3cc47437969d64" + integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== + +"@types/html-minifier-terser@^6.0.0": + version "6.1.0" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + +"@types/http-cache-semantics@^4.0.2": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" + integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + +"@types/http-errors@*": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" + integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + +"@types/http-proxy@^1.17.8": + version "1.17.14" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.14.tgz#57f8ccaa1c1c3780644f8a94f9c6b5000b5e2eec" + integrity sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + +"@types/istanbul-lib-report@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + +"@types/mdast@^4.0.0", "@types/mdast@^4.0.2": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.3.tgz#1e011ff013566e919a4232d1701ad30d70cab333" + integrity sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg== + dependencies: + "@types/unist" "*" + +"@types/mdx@^2.0.0": + version "2.0.11" + resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.11.tgz#21f4c166ed0e0a3a733869ba04cd8daea9834b8e" + integrity sha512-HM5bwOaIQJIQbAYfax35HCKxx7a3KrK3nBtIqJgSOitivTD1y3oW9P3rxY9RkXYPUk7y/AjAohfHKmFpGE79zw== + +"@types/mime@*": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.4.tgz#2198ac274de6017b44d941e00261d5bc6a0e0a45" + integrity sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw== + +"@types/mime@^1": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== + +"@types/ms@*": + version "0.7.34" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433" + integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== + +"@types/node-forge@^1.3.0": + version "1.3.11" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da" + integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== + dependencies: + "@types/node" "*" + +"@types/node@*": + version "20.11.28" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.28.tgz#4fd5b2daff2e580c12316e457473d68f15ee6f66" + integrity sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA== + dependencies: + undici-types "~5.26.4" + +"@types/node@^17.0.5": + version "17.0.45" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/parse-json@^4.0.0": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + +"@types/prismjs@^1.26.0": + version "1.26.3" + resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.3.tgz#47fe8e784c2dee24fe636cab82e090d3da9b7dec" + integrity sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw== + +"@types/prop-types@*": + version "15.7.11" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" + integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== + +"@types/qs@*": + version "6.9.12" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.12.tgz#afa96b383a3a6fdc859453a1892d41b607fc7756" + integrity sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg== + +"@types/range-parser@*": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== + +"@types/react-router-config@*", "@types/react-router-config@^5.0.7": + version "5.0.11" + resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.11.tgz#2761a23acc7905a66a94419ee40294a65aaa483a" + integrity sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw== + dependencies: + "@types/history" "^4.7.11" + "@types/react" "*" + "@types/react-router" "^5.1.0" + +"@types/react-router-dom@*": + version "5.3.3" + resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.3.3.tgz#e9d6b4a66fcdbd651a5f106c2656a30088cc1e83" + integrity sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw== + dependencies: + "@types/history" "^4.7.11" + "@types/react" "*" + "@types/react-router" "*" + +"@types/react-router@*", "@types/react-router@^5.1.0": + version "5.1.20" + resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.20.tgz#88eccaa122a82405ef3efbcaaa5dcdd9f021387c" + integrity sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q== + dependencies: + "@types/history" "^4.7.11" + "@types/react" "*" + +"@types/react@*": + version "18.2.66" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.66.tgz#d2eafc8c4e70939c5432221adb23d32d76bfe451" + integrity sha512-OYTmMI4UigXeFMF/j4uv0lBBEbongSgptPrHBxqME44h9+yNov+oL6Z3ocJKo0WyXR84sQUNeyIp9MRfckvZpg== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + +"@types/sax@^1.2.1": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.7.tgz#ba5fe7df9aa9c89b6dff7688a19023dd2963091d" + integrity sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A== + dependencies: + "@types/node" "*" + +"@types/scheduler@*": + version "0.16.8" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" + integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== + +"@types/send@*": + version "0.17.4" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a" + integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + dependencies: + "@types/mime" "^1" + "@types/node" "*" + +"@types/serve-index@^1.9.1": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898" + integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== + dependencies: + "@types/express" "*" + +"@types/serve-static@*", "@types/serve-static@^1.13.10": + version "1.15.5" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.5.tgz#15e67500ec40789a1e8c9defc2d32a896f05b033" + integrity sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ== + dependencies: + "@types/http-errors" "*" + "@types/mime" "*" + "@types/node" "*" + +"@types/sockjs@^0.3.33": + version "0.3.36" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535" + integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== + dependencies: + "@types/node" "*" + +"@types/unist@*", "@types/unist@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20" + integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ== + +"@types/unist@^2.0.0": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" + integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== + +"@types/ws@^8.5.5": + version "8.5.10" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.10.tgz#4acfb517970853fa6574a3a6886791d04a396787" + integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A== + dependencies: + "@types/node" "*" + +"@types/yargs-parser@*": + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + +"@types/yargs@^17.0.8": + version "17.0.32" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== + dependencies: + "@types/yargs-parser" "*" + +"@ungap/structured-clone@^1.0.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + +"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.11.5": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb" + integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + +"@webassemblyjs/floating-point-hex-parser@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + +"@webassemblyjs/helper-api-error@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + +"@webassemblyjs/helper-buffer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6" + integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== + +"@webassemblyjs/helper-numbers@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== + +"@webassemblyjs/helper-wasm-section@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf" + integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/wasm-gen" "1.12.1" + +"@webassemblyjs/ieee754@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + +"@webassemblyjs/wasm-edit@^1.11.5": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b" + integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-opt" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + "@webassemblyjs/wast-printer" "1.12.1" + +"@webassemblyjs/wasm-gen@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547" + integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wasm-opt@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5" + integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + +"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.11.5": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937" + integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-api-error" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wast-printer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac" + integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-import-assertions@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" + integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== + +acorn-jsx@^5.0.0: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.0.0: + version "8.3.2" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa" + integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A== + +acorn@^8.0.0, acorn@^8.0.4, acorn@^8.7.1, acorn@^8.8.2: + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== + +address@^1.0.1, address@^1.1.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + +ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv-keywords@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@^6.12.2, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.0, ajv@^8.9.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +algoliasearch-helper@^3.13.3: + version "3.16.3" + resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.16.3.tgz#38c3a18e278306f565823cc7f3dd706825b4bfb9" + integrity sha512-1OuJT6sONAa9PxcOmWo5WCAT3jQSpCR9/m5Azujja7nhUQwAUDvaaAYrcmUySsrvHh74usZHbE3jFfGnWtZj8w== + dependencies: + "@algolia/events" "^4.0.1" + +algoliasearch@^4.18.0, algoliasearch@^4.19.1: + version "4.22.1" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.22.1.tgz#f10fbecdc7654639ec20d62f109c1b3a46bc6afc" + integrity sha512-jwydKFQJKIx9kIZ8Jm44SdpigFwRGPESaxZBaHSV0XWN2yBJAOT4mT7ppvlrpA4UGzz92pqFnVKr/kaZXrcreg== + dependencies: + "@algolia/cache-browser-local-storage" "4.22.1" + "@algolia/cache-common" "4.22.1" + "@algolia/cache-in-memory" "4.22.1" + "@algolia/client-account" "4.22.1" + "@algolia/client-analytics" "4.22.1" + "@algolia/client-common" "4.22.1" + "@algolia/client-personalization" "4.22.1" + "@algolia/client-search" "4.22.1" + "@algolia/logger-common" "4.22.1" + "@algolia/logger-console" "4.22.1" + "@algolia/requester-browser-xhr" "4.22.1" + "@algolia/requester-common" "4.22.1" + "@algolia/requester-node-http" "4.22.1" + "@algolia/transporter" "4.22.1" + +ansi-align@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" + integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== + dependencies: + string-width "^4.1.0" + +ansi-html-community@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +astring@^1.8.0: + version "1.8.6" + resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.6.tgz#2c9c157cf1739d67561c56ba896e6948f6b93731" + integrity sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg== + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +autoprefixer@^10.4.12, autoprefixer@^10.4.14: + version "10.4.18" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.18.tgz#fcb171a3b017be7cb5d8b7a825f5aacbf2045163" + integrity sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g== + dependencies: + browserslist "^4.23.0" + caniuse-lite "^1.0.30001591" + fraction.js "^4.3.7" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +babel-loader@^9.1.3: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== + dependencies: + find-cache-dir "^4.0.0" + schema-utils "^4.0.0" + +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + dependencies: + object.assign "^4.1.0" + +babel-plugin-polyfill-corejs2@^0.4.8: + version "0.4.10" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz#276f41710b03a64f6467433cab72cbc2653c38b1" + integrity sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.6.1" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz#9eea32349d94556c2ad3ab9b82ebb27d4bf04a81" + integrity sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.5.0" + core-js-compat "^3.34.0" + +babel-plugin-polyfill-regenerator@^0.5.5: + version "0.5.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz#8b0c8fc6434239e5d7b8a9d1f832bb2b0310f06a" + integrity sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.5.0" + +bail@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" + integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + +body-parser@1.20.2: + version "1.20.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" + integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + +bonjour-service@^1.0.11: + version "1.2.1" + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.2.1.tgz#eb41b3085183df3321da1264719fbada12478d02" + integrity sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw== + dependencies: + fast-deep-equal "^3.1.3" + multicast-dns "^7.2.5" + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +boxen@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-6.2.1.tgz#b098a2278b2cd2845deef2dff2efc38d329b434d" + integrity sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw== + dependencies: + ansi-align "^3.0.1" + camelcase "^6.2.0" + chalk "^4.1.2" + cli-boxes "^3.0.0" + string-width "^5.0.1" + type-fest "^2.5.0" + widest-line "^4.0.1" + wrap-ansi "^8.0.1" + +boxen@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-7.1.1.tgz#f9ba525413c2fec9cdb88987d835c4f7cad9c8f4" + integrity sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog== + dependencies: + ansi-align "^3.0.1" + camelcase "^7.0.1" + chalk "^5.2.0" + cli-boxes "^3.0.0" + string-width "^5.1.2" + type-fest "^2.13.0" + widest-line "^4.0.1" + wrap-ansi "^8.1.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.2, browserslist@^4.22.3, browserslist@^4.23.0: + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== + dependencies: + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +cacheable-lookup@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz#3476a8215d046e5a3202a9209dd13fec1f933a27" + integrity sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w== + +cacheable-request@^10.2.8: + version "10.2.14" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-10.2.14.tgz#eb915b665fda41b79652782df3f553449c406b9d" + integrity sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ== + dependencies: + "@types/http-cache-semantics" "^4.0.2" + get-stream "^6.0.1" + http-cache-semantics "^4.1.1" + keyv "^4.5.3" + mimic-response "^4.0.0" + normalize-url "^8.0.0" + responselike "^3.0.0" + +call-bind@^1.0.5, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +camelcase@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" + integrity sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001591: + version "1.0.30001598" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001598.tgz#88e20ae1a1969d904dae97d538154a275893afef" + integrity sha512-j8mQRDziG94uoBfeFuqsJUNECW37DXpnvhcMJMdlH2u3MRkq1sAI0LJcXP1i/Py0KbSIC4UDj8YHPrTn5YsL+Q== + +ccount@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" + integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== + +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^5.0.1, chalk@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" + integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== + +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + +character-entities-html4@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" + integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== + +character-entities-legacy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" + integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== + +character-entities@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" + integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== + +character-reference-invalid@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" + integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== + +cheerio-select@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" + integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== + dependencies: + boolbase "^1.0.0" + css-select "^5.1.0" + css-what "^6.1.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + +cheerio@^1.0.0-rc.12, cheerio@^1.0.0-rc.3: + version "1.0.0-rc.12" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" + integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== + dependencies: + cheerio-select "^2.1.0" + dom-serializer "^2.0.0" + domhandler "^5.0.3" + domutils "^3.0.1" + htmlparser2 "^8.0.1" + parse5 "^7.0.0" + parse5-htmlparser2-tree-adapter "^7.0.0" + +chokidar@^3.4.2, chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + +ci-info@^3.2.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + +clean-css@^5.2.2, clean-css@^5.3.2, clean-css@~5.3.2: + version "5.3.3" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd" + integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== + dependencies: + source-map "~0.6.0" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-boxes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" + integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== + +cli-table3@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" + integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== + dependencies: + string-width "^4.2.0" + optionalDependencies: + "@colors/colors" "1.5.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clsx@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + +clsx@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.0.tgz#e851283bcb5c80ee7608db18487433f7b23f77cb" + integrity sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg== + +collapse-white-space@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-2.1.0.tgz#640257174f9f42c740b40f3b55ee752924feefca" + integrity sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colord@^2.9.1: + version "2.9.3" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +colorette@^2.0.10: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +combine-promises@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.2.0.tgz#5f2e68451862acf85761ded4d9e2af7769c2ca6a" + integrity sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ== + +comma-separated-tokens@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" + integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== + +commander@^10.0.0: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" + integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== + +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + +commander@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +config-chain@^1.1.11: + version "1.1.13" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +configstore@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-6.0.0.tgz#49eca2ebc80983f77e09394a1a56e0aca8235566" + integrity sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA== + dependencies: + dot-prop "^6.0.1" + graceful-fs "^4.2.6" + unique-string "^3.0.0" + write-file-atomic "^3.0.3" + xdg-basedir "^5.0.1" + +connect-history-api-fallback@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== + +consola@^2.15.3: + version "2.15.3" + resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" + integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + integrity sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA== + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4, content-type@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +copy-text-to-clipboard@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz#0202b2d9bdae30a49a53f898626dcc3b49ad960b" + integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== + +copy-webpack-plugin@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz#96d4dbdb5f73d02dd72d0528d1958721ab72e04a" + integrity sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ== + dependencies: + fast-glob "^3.2.11" + glob-parent "^6.0.1" + globby "^13.1.1" + normalize-path "^3.0.0" + schema-utils "^4.0.0" + serialize-javascript "^6.0.0" + +core-js-compat@^3.31.0, core-js-compat@^3.34.0: + version "3.36.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.0.tgz#087679119bc2fdbdefad0d45d8e5d307d45ba190" + integrity sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== + dependencies: + browserslist "^4.22.3" + +core-js-pure@^3.30.2: + version "3.36.0" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.36.0.tgz#ffb34330b14e594d6a9835cf5843b4123f1d95db" + integrity sha512-cN28qmhRNgbMZZMc/RFu5w8pK9VJzpb2rJVR/lHuZJKwmXnoWOpXmMkxqBB514igkp1Hu8WGROsiOAzUcKdHOQ== + +core-js@^3.31.1: + version "3.36.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.36.0.tgz#e752fa0b0b462a0787d56e9d73f80b0f7c0dde68" + integrity sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + +cosmiconfig@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cosmiconfig@^8.3.5: + version "8.3.6" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" + integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== + dependencies: + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + path-type "^4.0.0" + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-random-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-4.0.0.tgz#5a3cc53d7dd86183df5da0312816ceeeb5bb1fc2" + integrity sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== + dependencies: + type-fest "^1.0.1" + +css-declaration-sorter@^6.3.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71" + integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== + +css-loader@^6.8.1: + version "6.10.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.10.0.tgz#7c172b270ec7b833951b52c348861206b184a4b7" + integrity sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw== + dependencies: + icss-utils "^5.1.0" + postcss "^8.4.33" + postcss-modules-extract-imports "^3.0.0" + postcss-modules-local-by-default "^4.0.4" + postcss-modules-scope "^3.1.1" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.2.0" + semver "^7.5.4" + +css-minimizer-webpack-plugin@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.2.2.tgz#79f6199eb5adf1ff7ba57f105e3752d15211eb35" + integrity sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA== + dependencies: + cssnano "^5.1.8" + jest-worker "^29.1.2" + postcss "^8.4.17" + schema-utils "^4.0.0" + serialize-javascript "^6.0.0" + source-map "^0.6.1" + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-tree@^1.1.2, css-tree@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-what@^6.0.1, css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-advanced@^5.3.10: + version "5.3.10" + resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.10.tgz#25558a1fbf3a871fb6429ce71e41be7f5aca6eef" + integrity sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ== + dependencies: + autoprefixer "^10.4.12" + cssnano-preset-default "^5.2.14" + postcss-discard-unused "^5.1.0" + postcss-merge-idents "^5.1.1" + postcss-reduce-idents "^5.2.0" + postcss-zindex "^5.1.0" + +cssnano-preset-default@^5.2.14: + version "5.2.14" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8" + integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== + dependencies: + css-declaration-sorter "^6.3.1" + cssnano-utils "^3.1.0" + postcss-calc "^8.2.3" + postcss-colormin "^5.3.1" + postcss-convert-values "^5.1.3" + postcss-discard-comments "^5.1.2" + postcss-discard-duplicates "^5.1.0" + postcss-discard-empty "^5.1.1" + postcss-discard-overridden "^5.1.0" + postcss-merge-longhand "^5.1.7" + postcss-merge-rules "^5.1.4" + postcss-minify-font-values "^5.1.0" + postcss-minify-gradients "^5.1.1" + postcss-minify-params "^5.1.4" + postcss-minify-selectors "^5.2.1" + postcss-normalize-charset "^5.1.0" + postcss-normalize-display-values "^5.1.0" + postcss-normalize-positions "^5.1.1" + postcss-normalize-repeat-style "^5.1.1" + postcss-normalize-string "^5.1.0" + postcss-normalize-timing-functions "^5.1.0" + postcss-normalize-unicode "^5.1.1" + postcss-normalize-url "^5.1.0" + postcss-normalize-whitespace "^5.1.1" + postcss-ordered-values "^5.1.3" + postcss-reduce-initial "^5.1.2" + postcss-reduce-transforms "^5.1.0" + postcss-svgo "^5.1.0" + postcss-unique-selectors "^5.1.1" + +cssnano-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" + integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== + +cssnano@^5.1.15, cssnano@^5.1.8: + version "5.1.15" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf" + integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== + dependencies: + cssnano-preset-default "^5.2.14" + lilconfig "^2.0.3" + yaml "^1.10.2" + +csso@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +csstype@^3.0.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + +debounce@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + +debug@2.6.9, debug@^2.6.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decode-named-character-reference@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e" + integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== + dependencies: + character-entities "^2.0.0" + +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + dependencies: + execa "^5.0.0" + +defer-to-connect@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" + integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +del@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" + integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== + dependencies: + globby "^11.0.1" + graceful-fs "^4.2.4" + is-glob "^4.0.1" + is-path-cwd "^2.2.0" + is-path-inside "^3.0.2" + p-map "^4.0.0" + rimraf "^3.0.2" + slash "^3.0.0" + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +dequal@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +detect-port-alt@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" + integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== + dependencies: + address "^1.0.1" + debug "^2.6.0" + +detect-port@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.5.1.tgz#451ca9b6eaf20451acb0799b8ab40dff7718727b" + integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== + dependencies: + address "^1.0.1" + debug "4" + +devlop@^1.0.0, devlop@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/devlop/-/devlop-1.1.0.tgz#4db7c2ca4dc6e0e834c30be70c94bbc976dc7018" + integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== + dependencies: + dequal "^2.0.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dns-packet@^5.2.2: + version "5.6.1" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f" + integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== + dependencies: + "@leichtgewicht/ip-codec" "^2.0.1" + +dom-converter@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dot-prop@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" + integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== + dependencies: + is-obj "^2.0.0" + +duplexer@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.4.668: + version "1.4.708" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.708.tgz#d54d3b47cb44ae6b190067439c42135456907893" + integrity sha512-iWgEEvREL4GTXXHKohhh33+6Y8XkPI5eHihDmm8zUk5Zo7HICEW+wI/j5kJ2tbuNUCXJ/sNXa03ajW635DiJXA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +emojilib@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/emojilib/-/emojilib-2.4.0.tgz#ac518a8bb0d5f76dda57289ccb2fdf9d39ae721e" + integrity sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +emoticon@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-4.0.1.tgz#2d2bbbf231ce3a5909e185bbb64a9da703a1e749" + integrity sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +enhanced-resolve@^5.15.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz#65ec88778083056cb32487faa9aef82ed0864787" + integrity sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@^4.2.0, entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-module-lexer@^1.2.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5" + integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== + +escalade@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + +escape-goat@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-4.0.0.tgz#9424820331b510b0666b98f7873fe11ac4aa8081" + integrity sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg== + +escape-html@^1.0.3, escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escape-string-regexp@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + +eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-util-attach-comments@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz#344bde6a64c8a31d15231e5ee9e297566a691c2d" + integrity sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw== + dependencies: + "@types/estree" "^1.0.0" + +estree-util-build-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz#b6d0bced1dcc4f06f25cf0ceda2b2dcaf98168f1" + integrity sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ== + dependencies: + "@types/estree-jsx" "^1.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + estree-walker "^3.0.0" + +estree-util-is-identifier-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz#0b5ef4c4ff13508b34dcd01ecfa945f61fce5dbd" + integrity sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg== + +estree-util-to-js@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz#10a6fb924814e6abb62becf0d2bc4dea51d04f17" + integrity sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg== + dependencies: + "@types/estree-jsx" "^1.0.0" + astring "^1.8.0" + source-map "^0.7.0" + +estree-util-value-to-estree@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-3.0.1.tgz#0b7b5d6b6a4aaad5c60999ffbc265a985df98ac5" + integrity sha512-b2tdzTurEIbwRh+mKrEcaWfu1wgb8J1hVsgREg7FFiecWwK/PhO8X0kyc+0bIcKNtD4sqxIdNoRy6/p/TvECEA== + dependencies: + "@types/estree" "^1.0.0" + is-plain-obj "^4.0.0" + +estree-util-visit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-2.0.0.tgz#13a9a9f40ff50ed0c022f831ddf4b58d05446feb" + integrity sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/unist" "^3.0.0" + +estree-walker@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" + integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== + dependencies: + "@types/estree" "^1.0.0" + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +eta@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/eta/-/eta-2.2.0.tgz#eb8b5f8c4e8b6306561a455e62cd7492fe3a9b8a" + integrity sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +eval@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/eval/-/eval-0.1.8.tgz#2b903473b8cc1d1989b83a1e7923f883eb357f85" + integrity sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw== + dependencies: + "@types/node" "*" + require-like ">= 0.1.1" + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +express@^4.17.3: + version "4.18.3" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.3.tgz#6870746f3ff904dee1819b82e4b51509afffb0d4" + integrity sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.2" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + dependencies: + is-extendable "^0.1.0" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-url-parser@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" + integrity sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ== + dependencies: + punycode "^1.3.2" + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +fault@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" + integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== + dependencies: + format "^0.2.0" + +faye-websocket@^0.11.3: + version "0.11.4" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +feed@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/feed/-/feed-4.2.2.tgz#865783ef6ed12579e2c44bbef3c9113bc4956a7e" + integrity sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ== + dependencies: + xml-js "^1.6.11" + +file-loader@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" + integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" + +filesize@^8.0.6: + version "8.0.7" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-8.0.7.tgz#695e70d80f4e47012c132d57a059e80c6b580bd8" + integrity sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== + dependencies: + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +follow-redirects@^1.0.0: + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== + +fork-ts-checker-webpack-plugin@^6.5.0: + version "6.5.3" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz#eda2eff6e22476a2688d10661688c47f611b37f3" + integrity sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ== + dependencies: + "@babel/code-frame" "^7.8.3" + "@types/json-schema" "^7.0.5" + chalk "^4.1.0" + chokidar "^3.4.2" + cosmiconfig "^6.0.0" + deepmerge "^4.2.2" + fs-extra "^9.0.0" + glob "^7.1.6" + memfs "^3.1.2" + minimatch "^3.0.4" + schema-utils "2.7.0" + semver "^7.3.2" + tapable "^1.0.0" + +form-data-encoder@^2.1.2: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz#261ea35d2a70d48d30ec7a9603130fa5515e9cd5" + integrity sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw== + +format@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" + integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^11.1.1: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-monkey@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.5.tgz#fe450175f0db0d7ea758102e1d84096acb925788" + integrity sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + +get-stream@^6.0.0, get-stream@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +github-slugger@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" + integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.0.0, glob@^7.1.3, glob@^7.1.6: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-dirs@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" + integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== + dependencies: + ini "2.0.0" + +global-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globby@^11.0.1, globby@^11.0.4, globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globby@^13.1.1: + version "13.2.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592" + integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w== + dependencies: + dir-glob "^3.0.1" + fast-glob "^3.3.0" + ignore "^5.2.4" + merge2 "^1.4.1" + slash "^4.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +got@^12.1.0: + version "12.6.1" + resolved "https://registry.yarnpkg.com/got/-/got-12.6.1.tgz#8869560d1383353204b5a9435f782df9c091f549" + integrity sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ== + dependencies: + "@sindresorhus/is" "^5.2.0" + "@szmarczak/http-timer" "^5.0.1" + cacheable-lookup "^7.0.0" + cacheable-request "^10.2.8" + decompress-response "^6.0.0" + form-data-encoder "^2.1.2" + get-stream "^6.0.1" + http2-wrapper "^2.1.10" + lowercase-keys "^3.0.0" + p-cancelable "^3.0.0" + responselike "^3.0.0" + +graceful-fs@4.2.10: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +gray-matter@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798" + integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q== + dependencies: + js-yaml "^3.13.1" + kind-of "^6.0.2" + section-matter "^1.0.0" + strip-bom-string "^1.0.0" + +gzip-size@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462" + integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== + dependencies: + duplexer "^0.1.2" + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-yarn@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-3.0.0.tgz#c3c21e559730d1d3b57e28af1f30d06fac38147d" + integrity sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA== + +hasown@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +hast-util-from-parse5@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz#654a5676a41211e14ee80d1b1758c399a0327651" + integrity sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + devlop "^1.0.0" + hastscript "^8.0.0" + property-information "^6.0.0" + vfile "^6.0.0" + vfile-location "^5.0.0" + web-namespaces "^2.0.0" + +hast-util-parse-selector@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz#352879fa86e25616036037dd8931fb5f34cb4a27" + integrity sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A== + dependencies: + "@types/hast" "^3.0.0" + +hast-util-raw@^9.0.0: + version "9.0.2" + resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.0.2.tgz#39b4a4886bd9f0a5dd42e86d02c966c2c152884c" + integrity sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + "@ungap/structured-clone" "^1.0.0" + hast-util-from-parse5 "^8.0.0" + hast-util-to-parse5 "^8.0.0" + html-void-elements "^3.0.0" + mdast-util-to-hast "^13.0.0" + parse5 "^7.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + web-namespaces "^2.0.0" + zwitch "^2.0.0" + +hast-util-to-estree@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-3.1.0.tgz#f2afe5e869ddf0cf690c75f9fc699f3180b51b19" + integrity sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw== + dependencies: + "@types/estree" "^1.0.0" + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + estree-util-attach-comments "^3.0.0" + estree-util-is-identifier-name "^3.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + style-to-object "^0.4.0" + unist-util-position "^5.0.0" + zwitch "^2.0.0" + +hast-util-to-jsx-runtime@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.0.tgz#3ed27caf8dc175080117706bf7269404a0aa4f7c" + integrity sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ== + dependencies: + "@types/estree" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + style-to-object "^1.0.0" + unist-util-position "^5.0.0" + vfile-message "^4.0.0" + +hast-util-to-parse5@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz#477cd42d278d4f036bc2ea58586130f6f39ee6ed" + integrity sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw== + dependencies: + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + web-namespaces "^2.0.0" + zwitch "^2.0.0" + +hast-util-whitespace@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621" + integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== + dependencies: + "@types/hast" "^3.0.0" + +hastscript@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-8.0.0.tgz#4ef795ec8dee867101b9f23cc830d4baf4fd781a" + integrity sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw== + dependencies: + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + hast-util-parse-selector "^4.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + +he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +history@^4.9.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" + integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== + dependencies: + "@babel/runtime" "^7.1.2" + loose-envify "^1.2.0" + resolve-pathname "^3.0.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + value-equal "^1.0.1" + +hoist-non-react-statics@^3.1.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-entities@^2.3.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f" + integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== + +html-escaper@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +html-minifier-terser@^6.0.2: + version "6.1.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== + dependencies: + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" + he "^1.2.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.10.0" + +html-minifier-terser@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz#18752e23a2f0ed4b0f550f217bb41693e975b942" + integrity sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA== + dependencies: + camel-case "^4.1.2" + clean-css "~5.3.2" + commander "^10.0.0" + entities "^4.4.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.15.1" + +html-tags@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" + integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== + +html-void-elements@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-3.0.0.tgz#fc9dbd84af9e747249034d4d62602def6517f1d7" + integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== + +html-webpack-plugin@^5.5.3: + version "5.6.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz#50a8fa6709245608cb00e811eacecb8e0d7b7ea0" + integrity sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw== + dependencies: + "@types/html-minifier-terser" "^6.0.0" + html-minifier-terser "^6.0.2" + lodash "^4.17.21" + pretty-error "^4.0.0" + tapable "^2.0.0" + +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + +htmlparser2@^8.0.1: + version "8.0.2" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" + integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + entities "^4.4.0" + +http-cache-semantics@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-middleware@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" + integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + dependencies: + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +http2-wrapper@^2.1.10: + version "2.2.1" + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.1.tgz#310968153dcdedb160d8b72114363ef5fce1f64a" + integrity sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ== + dependencies: + quick-lru "^5.1.1" + resolve-alpn "^1.2.0" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +ignore@^5.2.0, ignore@^5.2.4: + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + +image-size@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.1.1.tgz#ddd67d4dc340e52ac29ce5f546a09f4e29e840ac" + integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ== + dependencies: + queue "6.0.2" + +immediate@^3.2.3: + version "3.3.0" + resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.3.0.tgz#1aef225517836bcdf7f2a2de2600c79ff0269266" + integrity sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q== + +immer@^9.0.7: + version "9.0.21" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" + integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== + +import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-lazy@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" + integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +infima@0.2.0-alpha.43: + version "0.2.0-alpha.43" + resolved "https://registry.yarnpkg.com/infima/-/infima-0.2.0-alpha.43.tgz#f7aa1d7b30b6c08afef441c726bac6150228cbe0" + integrity sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + +ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +inline-style-parser@0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" + integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== + +inline-style-parser@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.2.tgz#d498b4e6de0373458fc610ff793f6b14ebf45633" + integrity sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ== + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +ipaddr.js@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" + integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== + +is-alphabetical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" + integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== + +is-alphanumerical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" + integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== + dependencies: + is-alphabetical "^2.0.0" + is-decimal "^2.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-ci@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" + integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== + dependencies: + ci-info "^3.2.0" + +is-core-module@^2.13.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + dependencies: + hasown "^2.0.0" + +is-decimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" + integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extendable@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-hexadecimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" + integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== + +is-installed-globally@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" + integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== + dependencies: + global-dirs "^3.0.0" + is-path-inside "^3.0.2" + +is-npm@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-6.0.0.tgz#b59e75e8915543ca5d881ecff864077cba095261" + integrity sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-path-cwd@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-inside@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-obj@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + +is-reference@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.2.tgz#154747a01f45cd962404ee89d43837af2cba247c" + integrity sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg== + dependencies: + "@types/estree" "*" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + +is-root@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-typedarray@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +is-yarn-global@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.4.1.tgz#b312d902b313f81e4eaf98b6361ba2b45cd694bb" + integrity sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ== + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest-worker@^29.1.2: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== + dependencies: + "@types/node" "*" + jest-util "^29.7.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jiti@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== + +joi@^17.9.2: + version "17.12.2" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.12.2.tgz#283a664dabb80c7e52943c557aab82faea09f521" + integrity sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw== + dependencies: + "@hapi/hoek" "^9.3.0" + "@hapi/topo" "^5.1.0" + "@sideway/address" "^4.1.5" + "@sideway/formula" "^3.0.1" + "@sideway/pinpoint" "^2.0.0" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json5@^2.1.2, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== + dependencies: + graceful-fs "^4.1.11" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +latest-version@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-7.0.0.tgz#843201591ea81a4d404932eeb61240fe04e9e5da" + integrity sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg== + dependencies: + package-json "^8.1.0" + +launch-editor@^2.6.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.1.tgz#f259c9ef95cbc9425620bbbd14b468fcdb4ffe3c" + integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw== + dependencies: + picocolors "^1.0.0" + shell-quote "^1.8.1" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +lilconfig@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loader-utils@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +longest-streak@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" + integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lowercase-keys@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" + integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lunr-languages@^1.4.0: + version "1.14.0" + resolved "https://registry.yarnpkg.com/lunr-languages/-/lunr-languages-1.14.0.tgz#6e97635f434631729dd0e5654daedd291cd6f2d0" + integrity sha512-hWUAb2KqM3L7J5bcrngszzISY4BxrXn/Xhbb9TTCJYEGqlR1nG67/M14sp09+PTIRklobrn57IAxcdcO/ZFyNA== + +lunr@^2.3.9: + version "2.3.9" + resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" + integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== + +mark.js@^8.11.1: + version "8.11.1" + resolved "https://registry.yarnpkg.com/mark.js/-/mark.js-8.11.1.tgz#180f1f9ebef8b0e638e4166ad52db879beb2ffc5" + integrity sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ== + +markdown-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-2.0.0.tgz#34bebc83e9938cae16e0e017e4a9814a8330d3c4" + integrity sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q== + +markdown-table@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.3.tgz#e6331d30e493127e031dd385488b5bd326e4a6bd" + integrity sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw== + +mdast-util-directive@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz#3fb1764e705bbdf0afb0d3f889e4404c3e82561f" + integrity sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + parse-entities "^4.0.0" + stringify-entities "^4.0.0" + unist-util-visit-parents "^6.0.0" + +mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz#a6fc7b62f0994e973490e45262e4bc07607b04e0" + integrity sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA== + dependencies: + "@types/mdast" "^4.0.0" + escape-string-regexp "^5.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + +mdast-util-from-markdown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.0.tgz#52f14815ec291ed061f2922fd14d6689c810cb88" + integrity sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + mdast-util-to-string "^4.0.0" + micromark "^4.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-decode-string "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-stringify-position "^4.0.0" + +mdast-util-frontmatter@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz#f5f929eb1eb36c8a7737475c7eb438261f964ee8" + integrity sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + escape-string-regexp "^5.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + micromark-extension-frontmatter "^2.0.0" + +mdast-util-gfm-autolink-literal@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.0.tgz#5baf35407421310a08e68c15e5d8821e8898ba2a" + integrity sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg== + dependencies: + "@types/mdast" "^4.0.0" + ccount "^2.0.0" + devlop "^1.0.0" + mdast-util-find-and-replace "^3.0.0" + micromark-util-character "^2.0.0" + +mdast-util-gfm-footnote@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz#25a1753c7d16db8bfd53cd84fe50562bd1e6d6a9" + integrity sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.1.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + +mdast-util-gfm-strikethrough@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz#d44ef9e8ed283ac8c1165ab0d0dfd058c2764c16" + integrity sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm-table@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz#7a435fb6223a72b0862b33afbd712b6dae878d38" + integrity sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + markdown-table "^3.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm-task-list-item@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz#e68095d2f8a4303ef24094ab642e1047b991a936" + integrity sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz#3f2aecc879785c3cb6a81ff3a243dc11eca61095" + integrity sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw== + dependencies: + mdast-util-from-markdown "^2.0.0" + mdast-util-gfm-autolink-literal "^2.0.0" + mdast-util-gfm-footnote "^2.0.0" + mdast-util-gfm-strikethrough "^2.0.0" + mdast-util-gfm-table "^2.0.0" + mdast-util-gfm-task-list-item "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-mdx-expression@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz#4968b73724d320a379110d853e943a501bfd9d87" + integrity sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-mdx-jsx@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.2.tgz#daae777c72f9c4a106592e3025aa50fb26068e1b" + integrity sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + ccount "^2.0.0" + devlop "^1.1.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + parse-entities "^4.0.0" + stringify-entities "^4.0.0" + unist-util-remove-position "^5.0.0" + unist-util-stringify-position "^4.0.0" + vfile-message "^4.0.0" + +mdast-util-mdx@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz#792f9cf0361b46bee1fdf1ef36beac424a099c41" + integrity sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w== + dependencies: + mdast-util-from-markdown "^2.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-mdxjs-esm@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz#019cfbe757ad62dd557db35a695e7314bcc9fa97" + integrity sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-phrasing@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz#7cc0a8dec30eaf04b7b1a9661a92adb3382aa6e3" + integrity sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w== + dependencies: + "@types/mdast" "^4.0.0" + unist-util-is "^6.0.0" + +mdast-util-to-hast@^13.0.0: + version "13.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.1.0.tgz#1ae54d903150a10fe04d59f03b2b95fd210b2124" + integrity sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@ungap/structured-clone" "^1.0.0" + devlop "^1.0.0" + micromark-util-sanitize-uri "^2.0.0" + trim-lines "^3.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + +mdast-util-to-markdown@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz#9813f1d6e0cdaac7c244ec8c6dabfdb2102ea2b4" + integrity sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + longest-streak "^3.0.0" + mdast-util-phrasing "^4.0.0" + mdast-util-to-string "^4.0.0" + micromark-util-decode-string "^2.0.0" + unist-util-visit "^5.0.0" + zwitch "^2.0.0" + +mdast-util-to-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814" + integrity sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg== + dependencies: + "@types/mdast" "^4.0.0" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memfs@^3.1.2, memfs@^3.4.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6" + integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== + dependencies: + fs-monkey "^1.0.4" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromark-core-commonmark@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.0.tgz#50740201f0ee78c12a675bf3e68ffebc0bf931a3" + integrity sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA== + dependencies: + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-factory-destination "^2.0.0" + micromark-factory-label "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-factory-title "^2.0.0" + micromark-factory-whitespace "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-html-tag-name "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-directive@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-directive/-/micromark-extension-directive-3.0.0.tgz#527869de497a6de9024138479091bc885dae076b" + integrity sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-factory-whitespace "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + parse-entities "^4.0.0" + +micromark-extension-frontmatter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz#651c52ffa5d7a8eeed687c513cd869885882d67a" + integrity sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg== + dependencies: + fault "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-autolink-literal@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.0.0.tgz#f1e50b42e67d441528f39a67133eddde2bbabfd9" + integrity sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-footnote@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.0.0.tgz#91afad310065a94b636ab1e9dab2c60d1aab953c" + integrity sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg== + dependencies: + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-strikethrough@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.0.0.tgz#6917db8e320da70e39ffbf97abdbff83e6783e61" + integrity sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-table@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.0.0.tgz#2cf3fe352d9e089b7ef5fff003bdfe0da29649b7" + integrity sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-tagfilter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz#f26d8a7807b5985fba13cf61465b58ca5ff7dc57" + integrity sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg== + dependencies: + micromark-util-types "^2.0.0" + +micromark-extension-gfm-task-list-item@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.0.1.tgz#ee8b208f1ced1eb9fb11c19a23666e59d86d4838" + integrity sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz#3e13376ab95dd7a5cfd0e29560dfe999657b3c5b" + integrity sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w== + dependencies: + micromark-extension-gfm-autolink-literal "^2.0.0" + micromark-extension-gfm-footnote "^2.0.0" + micromark-extension-gfm-strikethrough "^2.0.0" + micromark-extension-gfm-table "^2.0.0" + micromark-extension-gfm-tagfilter "^2.0.0" + micromark-extension-gfm-task-list-item "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-mdx-expression@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz#1407b9ce69916cf5e03a196ad9586889df25302a" + integrity sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ== + dependencies: + "@types/estree" "^1.0.0" + devlop "^1.0.0" + micromark-factory-mdx-expression "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-events-to-acorn "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-mdx-jsx@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.0.tgz#4aba0797c25efb2366a3fd2d367c6b1c1159f4f5" + integrity sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w== + dependencies: + "@types/acorn" "^4.0.0" + "@types/estree" "^1.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + micromark-factory-mdx-expression "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + vfile-message "^4.0.0" + +micromark-extension-mdx-md@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz#1d252881ea35d74698423ab44917e1f5b197b92d" + integrity sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ== + dependencies: + micromark-util-types "^2.0.0" + +micromark-extension-mdxjs-esm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz#de21b2b045fd2059bd00d36746081de38390d54a" + integrity sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A== + dependencies: + "@types/estree" "^1.0.0" + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-events-to-acorn "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-position-from-estree "^2.0.0" + vfile-message "^4.0.0" + +micromark-extension-mdxjs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz#b5a2e0ed449288f3f6f6c544358159557549de18" + integrity sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ== + dependencies: + acorn "^8.0.0" + acorn-jsx "^5.0.0" + micromark-extension-mdx-expression "^3.0.0" + micromark-extension-mdx-jsx "^3.0.0" + micromark-extension-mdx-md "^2.0.0" + micromark-extension-mdxjs-esm "^3.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-destination@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz#857c94debd2c873cba34e0445ab26b74f6a6ec07" + integrity sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-label@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz#17c5c2e66ce39ad6f4fc4cbf40d972f9096f726a" + integrity sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw== + dependencies: + devlop "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-mdx-expression@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.1.tgz#f2a9724ce174f1751173beb2c1f88062d3373b1b" + integrity sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg== + dependencies: + "@types/estree" "^1.0.0" + devlop "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-events-to-acorn "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-position-from-estree "^2.0.0" + vfile-message "^4.0.0" + +micromark-factory-space@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" + integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-space@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz#5e7afd5929c23b96566d0e1ae018ae4fcf81d030" + integrity sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-title@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz#726140fc77892af524705d689e1cf06c8a83ea95" + integrity sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-whitespace@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz#9e92eb0f5468083381f923d9653632b3cfb5f763" + integrity sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-character@^1.0.0, micromark-util-character@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" + integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== + dependencies: + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-character@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.0.tgz#31320ace16b4644316f6bf057531689c71e2aee1" + integrity sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-chunked@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz#e51f4db85fb203a79dbfef23fd41b2f03dc2ef89" + integrity sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-classify-character@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz#8c7537c20d0750b12df31f86e976d1d951165f34" + integrity sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-combine-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz#75d6ab65c58b7403616db8d6b31315013bfb7ee5" + integrity sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ== + dependencies: + micromark-util-chunked "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-decode-numeric-character-reference@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz#2698bbb38f2a9ba6310e359f99fcb2b35a0d2bd5" + integrity sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-decode-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz#7dfa3a63c45aecaa17824e656bcdb01f9737154a" + integrity sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-symbol "^2.0.0" + +micromark-util-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz#0921ac7953dc3f1fd281e3d1932decfdb9382ab1" + integrity sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA== + +micromark-util-events-to-acorn@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz#4275834f5453c088bd29cd72dfbf80e3327cec07" + integrity sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA== + dependencies: + "@types/acorn" "^4.0.0" + "@types/estree" "^1.0.0" + "@types/unist" "^3.0.0" + devlop "^1.0.0" + estree-util-visit "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + vfile-message "^4.0.0" + +micromark-util-html-tag-name@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz#ae34b01cbe063363847670284c6255bb12138ec4" + integrity sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw== + +micromark-util-normalize-identifier@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz#91f9a4e65fe66cc80c53b35b0254ad67aa431d8b" + integrity sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w== + dependencies: + micromark-util-symbol "^2.0.0" + +micromark-util-resolve-all@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz#189656e7e1a53d0c86a38a652b284a252389f364" + integrity sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA== + dependencies: + micromark-util-types "^2.0.0" + +micromark-util-sanitize-uri@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz#ec8fbf0258e9e6d8f13d9e4770f9be64342673de" + integrity sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-symbol "^2.0.0" + +micromark-util-subtokenize@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.0.tgz#9f412442d77e0c5789ffdf42377fa8a2bcbdf581" + integrity sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-symbol@^1.0.0, micromark-util-symbol@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" + integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== + +micromark-util-symbol@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz#12225c8f95edf8b17254e47080ce0862d5db8044" + integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw== + +micromark-util-types@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" + integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== + +micromark-util-types@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz#63b4b7ffeb35d3ecf50d1ca20e68fc7caa36d95e" + integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w== + +micromark@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.0.tgz#84746a249ebd904d9658cfabc1e8e5f32cbc6249" + integrity sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ== + dependencies: + "@types/debug" "^4.0.0" + debug "^4.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-db@~1.33.0: + version "1.33.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" + integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== + +mime-types@2.1.18: + version "2.1.18" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" + integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== + dependencies: + mime-db "~1.33.0" + +mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +mimic-response@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f" + integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== + +mini-css-extract-plugin@^2.7.6: + version "2.8.1" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.1.tgz#75245f3f30ce3a56dbdd478084df6fe475f02dc7" + integrity sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA== + dependencies: + schema-utils "^4.0.0" + tapable "^2.2.1" + +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimatch@3.1.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +mrmime@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.0.tgz#151082a6e06e59a9a39b46b3e14d5cfe92b3abb4" + integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multicast-dns@^7.2.5: + version "7.2.5" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== + dependencies: + dns-packet "^5.2.2" + thunky "^1.0.2" + +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-emoji@^2.1.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-2.1.3.tgz#93cfabb5cc7c3653aa52f29d6ffb7927d8047c06" + integrity sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA== + dependencies: + "@sindresorhus/is" "^4.6.0" + char-regex "^1.0.2" + emojilib "^2.4.0" + skin-tone "^2.0.0" + +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +normalize-url@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + +normalize-url@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.0.1.tgz#9b7d96af9836577c58f5883e939365fa15623a4a" + integrity sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nprogress@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" + integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.0: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^8.0.9, open@^8.4.0: + version "8.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + +opener@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" + integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + +p-cancelable@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-3.0.0.tgz#63826694b54d61ca1c20ebcb6d3ecf5e14cd8050" + integrity sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw== + +p-limit@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-retry@^4.5.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + dependencies: + "@types/retry" "0.12.0" + retry "^0.13.1" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +package-json@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-8.1.1.tgz#3e9948e43df40d1e8e78a85485f1070bf8f03dc8" + integrity sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA== + dependencies: + got "^12.1.0" + registry-auth-token "^5.0.1" + registry-url "^6.0.0" + semver "^7.3.7" + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-entities@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.1.tgz#4e2a01111fb1c986549b944af39eeda258fc9e4e" + integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w== + dependencies: + "@types/unist" "^2.0.0" + character-entities "^2.0.0" + character-entities-legacy "^3.0.0" + character-reference-invalid "^2.0.0" + decode-named-character-reference "^1.0.0" + is-alphanumerical "^2.0.0" + is-decimal "^2.0.0" + is-hexadecimal "^2.0.0" + +parse-json@^5.0.0, parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-numeric-range@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3" + integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ== + +parse5-htmlparser2-tree-adapter@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" + integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== + dependencies: + domhandler "^5.0.2" + parse5 "^7.0.0" + +parse5@^7.0.0: + version "7.1.2" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" + integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== + dependencies: + entities "^4.4.0" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-is-inside@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-to-regexp@2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" + integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== + +path-to-regexp@^1.7.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" + integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== + dependencies: + isarray "0.0.1" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +periscopic@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a" + integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^3.0.0" + is-reference "^3.0.0" + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== + dependencies: + find-up "^6.3.0" + +pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + dependencies: + find-up "^3.0.0" + +postcss-calc@^8.2.3: + version "8.2.4" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" + integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== + dependencies: + postcss-selector-parser "^6.0.9" + postcss-value-parser "^4.2.0" + +postcss-colormin@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f" + integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + colord "^2.9.1" + postcss-value-parser "^4.2.0" + +postcss-convert-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" + integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-discard-comments@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" + integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== + +postcss-discard-duplicates@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" + integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== + +postcss-discard-empty@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" + integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== + +postcss-discard-overridden@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" + integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== + +postcss-discard-unused@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz#8974e9b143d887677304e558c1166d3762501142" + integrity sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-loader@^7.3.3: + version "7.3.4" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.4.tgz#aed9b79ce4ed7e9e89e56199d25ad1ec8f606209" + integrity sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A== + dependencies: + cosmiconfig "^8.3.5" + jiti "^1.20.0" + semver "^7.5.4" + +postcss-merge-idents@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz#7753817c2e0b75d0853b56f78a89771e15ca04a1" + integrity sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw== + dependencies: + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-merge-longhand@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" + integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== + dependencies: + postcss-value-parser "^4.2.0" + stylehacks "^5.1.1" + +postcss-merge-rules@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c" + integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + cssnano-utils "^3.1.0" + postcss-selector-parser "^6.0.5" + +postcss-minify-font-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" + integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-minify-gradients@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" + integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== + dependencies: + colord "^2.9.1" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-params@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" + integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== + dependencies: + browserslist "^4.21.4" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-selectors@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" + integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-modules-extract-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== + +postcss-modules-local-by-default@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz#7cbed92abd312b94aaea85b68226d3dec39a14e6" + integrity sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz#32cfab55e84887c079a19bbb215e721d683ef134" + integrity sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-normalize-charset@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" + integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== + +postcss-normalize-display-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" + integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-positions@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" + integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-repeat-style@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" + integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-string@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" + integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-timing-functions@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" + integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-unicode@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" + integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-normalize-url@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" + integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== + dependencies: + normalize-url "^6.0.1" + postcss-value-parser "^4.2.0" + +postcss-normalize-whitespace@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" + integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-ordered-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" + integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== + dependencies: + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-reduce-idents@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-5.2.0.tgz#c89c11336c432ac4b28792f24778859a67dfba95" + integrity sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-reduce-initial@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6" + integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + +postcss-reduce-transforms@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" + integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: + version "6.0.16" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04" + integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-sort-media-queries@^4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz#04a5a78db3921eb78f28a1a781a2e68e65258128" + integrity sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw== + dependencies: + sort-css-media-queries "2.1.0" + +postcss-svgo@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" + integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== + dependencies: + postcss-value-parser "^4.2.0" + svgo "^2.7.0" + +postcss-unique-selectors@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" + integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss-zindex@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-5.1.0.tgz#4a5c7e5ff1050bd4c01d95b1847dfdcc58a496ff" + integrity sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A== + +postcss@^8.4.17, postcss@^8.4.21, postcss@^8.4.26, postcss@^8.4.33: + version "8.4.35" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +pretty-error@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== + dependencies: + lodash "^4.17.20" + renderkid "^3.0.0" + +pretty-time@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" + integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== + +prism-react-renderer@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.3.1.tgz#e59e5450052ede17488f6bc85de1553f584ff8d5" + integrity sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw== + dependencies: + "@types/prismjs" "^1.26.0" + clsx "^2.0.0" + +prismjs@^1.29.0: + version "1.29.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12" + integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +prompts@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prop-types@^15.6.2, prop-types@^15.7.2: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +property-information@^6.0.0: + version "6.4.1" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.4.1.tgz#de8b79a7415fd2107dfbe65758bb2cc9dfcf60ac" + integrity sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w== + +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +punycode@^1.3.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +pupa@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pupa/-/pupa-3.1.0.tgz#f15610274376bbcc70c9a3aa8b505ea23f41c579" + integrity sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug== + dependencies: + escape-goat "^4.0.0" + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +queue@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" + integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== + dependencies: + inherits "~2.0.3" + +quick-lru@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +range-parser@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + integrity sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A== + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +rc@1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-dev-utils@^12.0.1: + version "12.0.1" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz#ba92edb4a1f379bd46ccd6bcd4e7bc398df33e73" + integrity sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ== + dependencies: + "@babel/code-frame" "^7.16.0" + address "^1.1.2" + browserslist "^4.18.1" + chalk "^4.1.2" + cross-spawn "^7.0.3" + detect-port-alt "^1.1.6" + escape-string-regexp "^4.0.0" + filesize "^8.0.6" + find-up "^5.0.0" + fork-ts-checker-webpack-plugin "^6.5.0" + global-modules "^2.0.0" + globby "^11.0.4" + gzip-size "^6.0.0" + immer "^9.0.7" + is-root "^2.1.0" + loader-utils "^3.2.0" + open "^8.4.0" + pkg-up "^3.1.0" + prompts "^2.4.2" + react-error-overlay "^6.0.11" + recursive-readdir "^2.2.2" + shell-quote "^1.7.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +react-dom@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-error-overlay@^6.0.11: + version "6.0.11" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb" + integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== + +react-fast-compare@^3.2.0, react-fast-compare@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" + integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== + +react-helmet-async@*: + version "2.0.4" + resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-2.0.4.tgz#50a4377778f380ed1d0136303916b38eff1bf153" + integrity sha512-yxjQMWposw+akRfvpl5+8xejl4JtUlHnEBcji6u8/e6oc7ozT+P9PNTWMhCbz2y9tc5zPegw2BvKjQA+NwdEjQ== + dependencies: + invariant "^2.2.4" + react-fast-compare "^3.2.2" + shallowequal "^1.1.0" + +react-helmet-async@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.3.0.tgz#7bd5bf8c5c69ea9f02f6083f14ce33ef545c222e" + integrity sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg== + dependencies: + "@babel/runtime" "^7.12.5" + invariant "^2.2.4" + prop-types "^15.7.2" + react-fast-compare "^3.2.0" + shallowequal "^1.1.0" + +react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-json-view-lite@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/react-json-view-lite/-/react-json-view-lite-1.3.0.tgz#1f1feee6f1b1d75cc498cd57812f441b88b51e21" + integrity sha512-aN1biKC5v4DQkmQBlZjuMFR09MKZGMPtIg+cut8zEeg2HXd6gl2gRy0n4HMacHf0dznQgo0SVXN7eT8zV3hEuQ== + +react-loadable-ssr-addon-v5-slorber@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz#2cdc91e8a744ffdf9e3556caabeb6e4278689883" + integrity sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A== + dependencies: + "@babel/runtime" "^7.10.3" + +react-router-config@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/react-router-config/-/react-router-config-5.1.1.tgz#0f4263d1a80c6b2dc7b9c1902c9526478194a988" + integrity sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg== + dependencies: + "@babel/runtime" "^7.1.2" + +react-router-dom@^5.3.4: + version "5.3.4" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.4.tgz#2ed62ffd88cae6db134445f4a0c0ae8b91d2e5e6" + integrity sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ== + dependencies: + "@babel/runtime" "^7.12.13" + history "^4.9.0" + loose-envify "^1.3.1" + prop-types "^15.6.2" + react-router "5.3.4" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + +react-router@5.3.4, react-router@^5.3.4: + version "5.3.4" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.4.tgz#8ca252d70fcc37841e31473c7a151cf777887bb5" + integrity sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA== + dependencies: + "@babel/runtime" "^7.12.13" + history "^4.9.0" + hoist-non-react-statics "^3.1.0" + loose-envify "^1.3.1" + path-to-regexp "^1.7.0" + prop-types "^15.6.2" + react-is "^16.6.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + +react@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +readable-stream@^2.0.1: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +reading-time@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/reading-time/-/reading-time-1.5.0.tgz#d2a7f1b6057cb2e169beaf87113cc3411b5bc5bb" + integrity sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg== + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +recursive-readdir@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.3.tgz#e726f328c0d69153bcabd5c322d3195252379372" + integrity sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA== + dependencies: + minimatch "^3.0.5" + +regenerate-unicode-properties@^10.1.0: + version "10.1.1" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +registry-auth-token@^5.0.1: + version "5.0.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.0.2.tgz#8b026cc507c8552ebbe06724136267e63302f756" + integrity sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ== + dependencies: + "@pnpm/npm-conf" "^2.1.0" + +registry-url@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-6.0.1.tgz#056d9343680f2f64400032b1e199faa692286c58" + integrity sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q== + dependencies: + rc "1.2.8" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +rehype-raw@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/rehype-raw/-/rehype-raw-7.0.0.tgz#59d7348fd5dbef3807bbaa1d443efd2dd85ecee4" + integrity sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww== + dependencies: + "@types/hast" "^3.0.0" + hast-util-raw "^9.0.0" + vfile "^6.0.0" + +relateurl@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + +remark-directive@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/remark-directive/-/remark-directive-3.0.0.tgz#34452d951b37e6207d2e2a4f830dc33442923268" + integrity sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-directive "^3.0.0" + micromark-extension-directive "^3.0.0" + unified "^11.0.0" + +remark-emoji@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-4.0.1.tgz#671bfda668047689e26b2078c7356540da299f04" + integrity sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg== + dependencies: + "@types/mdast" "^4.0.2" + emoticon "^4.0.1" + mdast-util-find-and-replace "^3.0.1" + node-emoji "^2.1.0" + unified "^11.0.4" + +remark-frontmatter@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz#b68d61552a421ec412c76f4f66c344627dc187a2" + integrity sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-frontmatter "^2.0.0" + micromark-extension-frontmatter "^2.0.0" + unified "^11.0.0" + +remark-gfm@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-4.0.0.tgz#aea777f0744701aa288b67d28c43565c7e8c35de" + integrity sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-gfm "^3.0.0" + micromark-extension-gfm "^3.0.0" + remark-parse "^11.0.0" + remark-stringify "^11.0.0" + unified "^11.0.0" + +remark-mdx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-3.0.1.tgz#8f73dd635c1874e44426e243f72c0977cf60e212" + integrity sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA== + dependencies: + mdast-util-mdx "^3.0.0" + micromark-extension-mdxjs "^3.0.0" + +remark-parse@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-11.0.0.tgz#aa60743fcb37ebf6b069204eb4da304e40db45a1" + integrity sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + micromark-util-types "^2.0.0" + unified "^11.0.0" + +remark-rehype@^11.0.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.0.tgz#d5f264f42bcbd4d300f030975609d01a1697ccdc" + integrity sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + mdast-util-to-hast "^13.0.0" + unified "^11.0.0" + vfile "^6.0.0" + +remark-stringify@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-11.0.0.tgz#4c5b01dd711c269df1aaae11743eb7e2e7636fd3" + integrity sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-to-markdown "^2.0.0" + unified "^11.0.0" + +renderkid@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== + dependencies: + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^6.0.1" + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +"require-like@>= 0.1.1": + version "0.1.2" + resolved "https://registry.yarnpkg.com/require-like/-/require-like-0.1.2.tgz#ad6f30c13becd797010c468afa775c0c0a6b47fa" + integrity sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resolve-alpn@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" + integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-pathname@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" + integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== + +resolve@^1.1.6, resolve@^1.14.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +responselike@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-3.0.0.tgz#20decb6c298aff0dbee1c355ca95461d42823626" + integrity sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg== + dependencies: + lowercase-keys "^3.0.0" + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rtl-detect@^1.0.4: + version "1.1.2" + resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.1.2.tgz#ca7f0330af5c6bb626c15675c642ba85ad6273c6" + integrity sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ== + +rtlcss@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-4.1.1.tgz#f20409fcc197e47d1925996372be196fee900c0c" + integrity sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + postcss "^8.4.21" + strip-json-comments "^3.1.1" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sax@^1.2.4: + version "1.3.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0" + integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +schema-utils@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" + integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== + dependencies: + "@types/json-schema" "^7.0.4" + ajv "^6.12.2" + ajv-keywords "^3.4.1" + +schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.9.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.1.0" + +section-matter@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" + integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== + dependencies: + extend-shallow "^2.0.1" + kind-of "^6.0.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selfsigned@^2.1.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== + dependencies: + "@types/node-forge" "^1.3.0" + node-forge "^1" + +semver-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-4.0.0.tgz#3afcf5ed6d62259f5c72d0d5d50dffbdc9680df5" + integrity sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA== + dependencies: + semver "^7.3.5" + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + +serve-handler@^6.1.5: + version "6.1.5" + resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.5.tgz#a4a0964f5c55c7e37a02a633232b6f0d6f068375" + integrity sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg== + dependencies: + bytes "3.0.0" + content-disposition "0.5.2" + fast-url-parser "1.1.3" + mime-types "2.1.18" + minimatch "3.1.2" + path-is-inside "1.0.2" + path-to-regexp "2.2.1" + range-parser "1.2.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shallowequal@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" + integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.7.3, shell-quote@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +side-channel@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sirv@^2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.4.tgz#5dd9a725c578e34e449f332703eb2a74e46a29b0" + integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ== + dependencies: + "@polka/url" "^1.0.0-next.24" + mrmime "^2.0.0" + totalist "^3.0.0" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +sitemap@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-7.1.1.tgz#eeed9ad6d95499161a3eadc60f8c6dce4bea2bef" + integrity sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg== + dependencies: + "@types/node" "^17.0.5" + "@types/sax" "^1.2.1" + arg "^5.0.0" + sax "^1.2.4" + +skin-tone@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/skin-tone/-/skin-tone-2.0.0.tgz#4e3933ab45c0d4f4f781745d64b9f4c208e41237" + integrity sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA== + dependencies: + unicode-emoji-modifier-base "^1.0.0" + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + +sockjs@^0.3.24: + version "0.3.24" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + dependencies: + faye-websocket "^0.11.3" + uuid "^8.3.2" + websocket-driver "^0.7.4" + +sort-css-media-queries@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/sort-css-media-queries/-/sort-css-media-queries-2.1.0.tgz#7c85e06f79826baabb232f5560e9745d7a78c4ce" + integrity sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA== + +source-map-js@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.3.tgz#bbb1906b3af3657924d27edcdaf1dd93ca462eec" + integrity sha512-H/5Vyeo/I1hqIdOS0m1Q63OPr0yFdZLaiVkr8ap/WyIVGdU3PyoOV/HXY8+PJE2M43+n11FY5zWQnNRNnD1UFg== + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.7.0: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +space-separated-tokens@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" + integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +srcset@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/srcset/-/srcset-4.0.0.tgz#336816b665b14cd013ba545b6fe62357f86e65f4" + integrity sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw== + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +std-env@^3.0.1: + version "3.7.0" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2" + integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-entities@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8" + integrity sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g== + dependencies: + character-entities-html4 "^2.0.0" + character-entities-legacy "^3.0.0" + +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-bom-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" + integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + +style-to-object@^0.4.0: + version "0.4.4" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.4.tgz#266e3dfd56391a7eefb7770423612d043c3f33ec" + integrity sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg== + dependencies: + inline-style-parser "0.1.1" + +style-to-object@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.5.tgz#5e918349bc3a39eee3a804497d97fcbbf2f0d7c0" + integrity sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ== + dependencies: + inline-style-parser "0.2.2" + +stylehacks@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" + integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== + dependencies: + browserslist "^4.21.4" + postcss-selector-parser "^6.0.4" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-parser@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== + +svgo@^2.7.0, svgo@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" + integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^4.1.3" + css-tree "^1.1.3" + csso "^4.2.0" + picocolors "^1.0.0" + stable "^0.1.8" + +tapable@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.9: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== + dependencies: + "@jridgewell/trace-mapping" "^0.3.20" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.1" + terser "^5.26.0" + +terser@^5.10.0, terser@^5.15.1, terser@^5.26.0: + version "5.29.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.29.2.tgz#c17d573ce1da1b30f21a877bffd5655dd86fdb35" + integrity sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +tiny-invariant@^1.0.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" + integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== + +tiny-warning@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +totalist@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/totalist/-/totalist-3.0.1.tgz#ba3a3d600c915b1a97872348f79c127475f6acf8" + integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ== + +trim-lines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338" + integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== + +trough@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f" + integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== + +tslib@^2.0.3, tslib@^2.4.0, tslib@^2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + +type-fest@^1.0.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" + integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== + +type-fest@^2.13.0, type-fest@^2.5.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-emoji-modifier-base@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz#dbbd5b54ba30f287e2a8d5a249da6c0cef369459" + integrity sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +unified@^11.0.0, unified@^11.0.3, unified@^11.0.4: + version "11.0.4" + resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.4.tgz#f4be0ac0fe4c88cb873687c07c64c49ed5969015" + integrity sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ== + dependencies: + "@types/unist" "^3.0.0" + bail "^2.0.0" + devlop "^1.0.0" + extend "^3.0.0" + is-plain-obj "^4.0.0" + trough "^2.0.0" + vfile "^6.0.0" + +unique-string@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a" + integrity sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== + dependencies: + crypto-random-string "^4.0.0" + +unist-util-is@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424" + integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-position-from-estree@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz#d94da4df596529d1faa3de506202f0c9a23f2200" + integrity sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-position@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-5.0.0.tgz#678f20ab5ca1207a97d7ea8a388373c9cf896be4" + integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-remove-position@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz#fea68a25658409c9460408bc6b4991b965b52163" + integrity sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q== + dependencies: + "@types/unist" "^3.0.0" + unist-util-visit "^5.0.0" + +unist-util-stringify-position@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" + integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-visit-parents@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815" + integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + +unist-util-visit@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6" + integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +update-notifier@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-6.0.2.tgz#a6990253dfe6d5a02bd04fbb6a61543f55026b60" + integrity sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og== + dependencies: + boxen "^7.0.0" + chalk "^5.0.1" + configstore "^6.0.0" + has-yarn "^3.0.0" + import-lazy "^4.0.0" + is-ci "^3.0.1" + is-installed-globally "^0.4.0" + is-npm "^6.0.0" + is-yarn-global "^0.4.0" + latest-version "^7.0.0" + pupa "^3.1.0" + semver "^7.3.7" + semver-diff "^4.0.0" + xdg-basedir "^5.1.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-loader@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" + integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== + dependencies: + loader-utils "^2.0.0" + mime-types "^2.1.27" + schema-utils "^3.0.0" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + +utility-types@^3.10.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.11.0.tgz#607c40edb4f258915e901ea7995607fdf319424c" + integrity sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +value-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" + integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vfile-location@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-5.0.2.tgz#220d9ca1ab6f8b2504a4db398f7ebc149f9cb464" + integrity sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg== + dependencies: + "@types/unist" "^3.0.0" + vfile "^6.0.0" + +vfile-message@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181" + integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + +vfile@^6.0.0, vfile@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.1.tgz#1e8327f41eac91947d4fe9d237a2dd9209762536" + integrity sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + vfile-message "^4.0.0" + +watchpack@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff" + integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +web-namespaces@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692" + integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== + +webpack-bundle-analyzer@^4.9.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz#84b7473b630a7b8c21c741f81d8fe4593208b454" + integrity sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ== + dependencies: + "@discoveryjs/json-ext" "0.5.7" + acorn "^8.0.4" + acorn-walk "^8.0.0" + commander "^7.2.0" + debounce "^1.2.1" + escape-string-regexp "^4.0.0" + gzip-size "^6.0.0" + html-escaper "^2.0.2" + is-plain-object "^5.0.0" + opener "^1.5.2" + picocolors "^1.0.0" + sirv "^2.0.3" + ws "^7.3.1" + +webpack-dev-middleware@^5.3.1: + version "5.3.3" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" + integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== + dependencies: + colorette "^2.0.10" + memfs "^3.4.3" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@^4.15.1: + version "4.15.1" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" + integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== + dependencies: + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/express" "^4.17.13" + "@types/serve-index" "^1.9.1" + "@types/serve-static" "^1.13.10" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.5.5" + ansi-html-community "^0.0.8" + bonjour-service "^1.0.11" + chokidar "^3.5.3" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.0.1" + launch-editor "^2.6.0" + open "^8.0.9" + p-retry "^4.5.0" + rimraf "^3.0.2" + schema-utils "^4.0.0" + selfsigned "^2.1.1" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^5.3.1" + ws "^8.13.0" + +webpack-merge@^5.9.0: + version "5.10.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.10.0.tgz#a3ad5d773241e9c682803abf628d4cd62b8a4177" + integrity sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== + dependencies: + clone-deep "^4.0.1" + flat "^5.0.2" + wildcard "^2.0.0" + +webpack-sources@^3.2.2, webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack@^5.88.1: + version "5.90.3" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.90.3.tgz#37b8f74d3ded061ba789bb22b31e82eed75bd9ac" + integrity sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^1.0.5" + "@webassemblyjs/ast" "^1.11.5" + "@webassemblyjs/wasm-edit" "^1.11.5" + "@webassemblyjs/wasm-parser" "^1.11.5" + acorn "^8.7.1" + acorn-import-assertions "^1.9.0" + browserslist "^4.21.10" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.15.0" + es-module-lexer "^1.2.1" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.2.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.3.10" + watchpack "^2.4.0" + webpack-sources "^3.2.3" + +webpackbar@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/webpackbar/-/webpackbar-5.0.2.tgz#d3dd466211c73852741dfc842b7556dcbc2b0570" + integrity sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ== + dependencies: + chalk "^4.1.0" + consola "^2.15.3" + pretty-time "^1.1.0" + std-env "^3.0.1" + +websocket-driver@>=0.5.1, websocket-driver@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +widest-line@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-4.0.1.tgz#a0fc673aaba1ea6f0a0d35b3c2795c9a9cc2ebf2" + integrity sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== + dependencies: + string-width "^5.0.1" + +wildcard@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== + +wrap-ansi@^8.0.1, wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + +ws@^7.3.1: + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.13.0: + version "8.16.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" + integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== + +xdg-basedir@^5.0.1, xdg-basedir@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" + integrity sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== + +xml-js@^1.6.11: + version "1.6.11" + resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9" + integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== + dependencies: + sax "^1.2.4" + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== + +zwitch@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" + integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== diff --git a/src/DocFxToTemplate.Tool/DocFxToTemplate.Tool.csproj b/src/DocFxToTemplate.Tool/DocFxToTemplate.Tool.csproj new file mode 100644 index 0000000..160d850 --- /dev/null +++ b/src/DocFxToTemplate.Tool/DocFxToTemplate.Tool.csproj @@ -0,0 +1,26 @@ + + + + Exe + net8.0 + MIT + Docusaurus Markdown generator using DocFX. + https://github.com/k-wojcik/DocFxToTemplate + true + docfx-to-template + enable + enable + DocFxToTemplate.Tool + + + + + + + + + + + + + diff --git a/src/DocFxToTemplate.Tool/Program.cs b/src/DocFxToTemplate.Tool/Program.cs new file mode 100644 index 0000000..c96f5e4 --- /dev/null +++ b/src/DocFxToTemplate.Tool/Program.cs @@ -0,0 +1,89 @@ +using System.ComponentModel.DataAnnotations; +using Docfx.Dotnet; +using DocFxToTemplate; +using McMaster.Extensions.CommandLineUtils; +using McMaster.Extensions.CommandLineUtils.Validation; +using Microsoft.Extensions.Logging; +using Newtonsoft.Json.Linq; + +var app = new CommandLineApplication(); +app.HelpOption(); + +app.Command("build", cmd => +{ + var yamlDirectory = cmd.Option("-y|--yaml ", + "The DocFx yaml directory", + CommandOptionType.SingleValue); + + var docFxConfig = cmd.Option("-c|--config ", + "The docfx.json config file", + CommandOptionType.SingleValue); + + var outputDirectory = cmd.Option("-o|--output ", + "The output directory", + CommandOptionType.SingleValue, + x => x.IsRequired()); + + var skipDocFxGenerate = cmd.Argument("-s|--skip-docfx", + "Skips docfx YAML metadata generation"); + + cmd.Validators.Add(new DelegateValidator(x => + { + if (!yamlDirectory.HasValue() && !docFxConfig.HasValue()) + { + return new ValidationResult("One of the --yaml or --config options is required!"); + } + + return ValidationResult.Success!; + })); + + cmd.OnExecuteAsync(async _ => + { + if (!skipDocFxGenerate.HasValue) + { + await DotnetApiCatalog.GenerateManagedReferenceYamlFiles(docFxConfig.Value(), new DotnetApiOptions()); + } + + var source = GetSource(yamlDirectory, docFxConfig); + using var factory = LoggerFactory.Create(builder => builder.AddConsole()); + var options = new GeneratorOptions() + { + YamlPath = source, + OutputPath = outputDirectory.Value()! + }; + + var generator = new Generator(factory.CreateLogger(), options); + await generator.Generate(); + }); +}); + +return app.Execute(args); + +static string GetSource(CommandOption yamlDirectory, CommandOption docFxConfig) +{ + if (yamlDirectory.HasValue()) + { + return yamlDirectory.Value()!; + } + + if (docFxConfig.HasValue()) + { + var config = JObject.Parse(File.ReadAllText(docFxConfig.Value()!)); + + if (config.TryGetValue("metadata", out var metadata)) + { + var destination = metadata.FirstOrDefault()?["dest"]?.Value(); + if (destination != null) + { + if (Path.IsPathRooted(destination)) + { + return destination; + } + + return Path.Combine(Path.GetDirectoryName(docFxConfig.Value()!)!, destination); + } + } + } + + throw new ArgumentException("Docfx YAML metadata directory cannot be determined!"); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Blocks/Link.cs b/src/DocFxToTemplate/Blocks/Link.cs new file mode 100644 index 0000000..e0e5b6c --- /dev/null +++ b/src/DocFxToTemplate/Blocks/Link.cs @@ -0,0 +1,51 @@ +using DocFxToTemplate.Extensions; +using DocFxToTemplate.Models.DocFx; + +namespace DocFxToTemplate.Blocks; + +internal static class Link +{ + public static MarkdownLink? GetLink(this List items, string uid) + { + var item = items.SingleOrDefault(x => x.Uid == uid); + if (item == null) + { + return null; + } + + return item.GetLink(items); + } + + public static MarkdownLink? GetLink(this ItemViewModel item, List items) + { + var linkFromIndex = false; + var linkFromGroupedType = false; + var dots = linkFromIndex ? "./" : linkFromGroupedType ? "../../" : "../"; + + string name = item.NameWithType.HtmlEscape(); + var extension = linkFromIndex ? ".md" : ""; + + string? absoluteAddress = null; + if (item.Type is MemberType.Class or MemberType.Interface or MemberType.Enum or MemberType.Struct or MemberType.Delegate) + { + absoluteAddress = $"{dots}{item.NamespaceName}/{item.Name}{extension}".FileEscape(); + } + else if (item.Type is MemberType.Namespace) + { + absoluteAddress = $"{item.Name.HtmlEscape()}/{item.Name.HtmlEscape()}.md".FileEscape(); + } + else + { + var parent = items.FirstOrDefault(i => i.Uid == item.Parent); + if (parent != null) + { + var urlPart = $"{dots}{item.NamespaceName}/{parent.Name}{extension}".FileEscape(); + var hashPart = $"#{item.Name.GetMarkdownHash()}"; + absoluteAddress = $"{urlPart}{hashPart}"; + + } + } + + return new(name, absoluteAddress); + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/DocFxToTemplate.csproj b/src/DocFxToTemplate/DocFxToTemplate.csproj new file mode 100644 index 0000000..7188669 --- /dev/null +++ b/src/DocFxToTemplate/DocFxToTemplate.csproj @@ -0,0 +1,37 @@ + + + + net8.0 + MIT + Template generator using DocFX. + https://github.com/k-wojcik/DocFxToTemplate + enable + enable + DocFxToTemplate + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + diff --git a/src/DocFxToTemplate/Extensions/ItemExtensions.cs b/src/DocFxToTemplate/Extensions/ItemExtensions.cs new file mode 100644 index 0000000..bbff6cb --- /dev/null +++ b/src/DocFxToTemplate/Extensions/ItemExtensions.cs @@ -0,0 +1,46 @@ +using DocFxToTemplate.Models.DocFx; + +namespace DocFxToTemplate.Extensions; + +internal static class ItemExtensions +{ + public static IEnumerable GetProperties(this IEnumerable items, string uid) + => items + .Where(i => i.Parent == uid && i.Type == MemberType.Property) + .OrderBy(x => x.Name) + .ThenBy(x => x.Uid); + + public static IEnumerable GetFields(this IEnumerable items, string uid) + => items + .Where(i => i.Parent == uid && i.Type == MemberType.Field) + .OrderBy(x => x.Name) + .ThenBy(x => x.Uid); + + public static IEnumerable GetMethods(this IEnumerable items, string uid) + => items + .Where(i => i.Parent == uid && i.Type == MemberType.Method) + .OrderBy(x => x.Name) + .ThenBy(x => x.Uid); + + public static IEnumerable GetEvents(this IEnumerable items, string uid) + => items + .Where(i => i.Parent == uid && i.Type == MemberType.Event) + .OrderBy(x => x.Name) + .ThenBy(x => x.Uid); + + public static ItemViewModel? GetByUid(this IEnumerable items, string uid) + => items.SingleOrDefault(i => i.Uid == uid); + + public static ReferenceViewModel? GetByUid(this IEnumerable items, string uid) + => items.SingleOrDefault(i => i.Uid == uid); + + public static List GetByUid(this IEnumerable items, List? uids) + => uids? + .Select(uid => items.SingleOrDefault(i => i.Uid == uid)) + .Where(x => x != null) + .Select(x => x!) + .OrderBy(x => x.Name) + .ThenBy(x => x.Uid) + .ToList() + ?? new List(0); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Extensions/ListExtensions.cs b/src/DocFxToTemplate/Extensions/ListExtensions.cs new file mode 100644 index 0000000..cdd10ea --- /dev/null +++ b/src/DocFxToTemplate/Extensions/ListExtensions.cs @@ -0,0 +1,6 @@ +namespace DocFxToTemplate.Extensions; + +internal static class ListExtensions +{ + public static List? OrderBy(this List? input) => input?.OrderBy(x=> x).ToList(); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Extensions/StringExtensions.cs b/src/DocFxToTemplate/Extensions/StringExtensions.cs new file mode 100644 index 0000000..ee46927 --- /dev/null +++ b/src/DocFxToTemplate/Extensions/StringExtensions.cs @@ -0,0 +1,36 @@ +using System.Diagnostics.CodeAnalysis; +using MemberType = DocFxToTemplate.Models.DocFx.MemberType; + +namespace DocFxToTemplate.Extensions; + +internal static class StringExtensions +{ + [return: NotNullIfNotNull(nameof(str))] + public static string? HtmlEscape(this string? str) + => str? + .Replace("<", "<") + .Replace(">", ">") + .Replace("}", "\\>") + .Replace("{", "\\<"); + + public static string? FileEscape(this string? str) + => str?.Replace("<", "`").Replace(">", "`").Replace(" ", "%20"); + + [return: NotNullIfNotNull(nameof(str))] + public static string? GetMarkdownHash(this string? str) + => str?.ToLower() + .Replace("(", "") + .Replace(")", "") + .Replace("?", ""); + + public static string GetTypePathPart(this MemberType? type) + => type switch + { + MemberType.Class => "Classes", + MemberType.Struct => "Structs", + MemberType.Interface => "Interfaces", + MemberType.Enum => "Enums", + MemberType.Delegate => "Delegates", + _ => throw new ArgumentOutOfRangeException(nameof(type), type, null), + }; +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Generator.cs b/src/DocFxToTemplate/Generator.cs new file mode 100644 index 0000000..5b33d04 --- /dev/null +++ b/src/DocFxToTemplate/Generator.cs @@ -0,0 +1,296 @@ +using System.Diagnostics; +using System.Reflection; +using DocFxToTemplate.Blocks; +using DocFxToTemplate.Extensions; +using DocFxToTemplate.Models.DocFx; +using DocFxToTemplate.Templates; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.ObjectPool; +using Scriban; +using Scriban.Runtime; +using YamlDotNet.Serialization; +using YamlDotNet.Serialization.NamingConventions; + +namespace DocFxToTemplate; + +public sealed class Generator +{ + private readonly ILogger _logger; + private readonly GeneratorOptions _options; + + public Generator(ILogger logger, GeneratorOptions options) + { + _logger = logger; + _options = options; + } + + public async Task Generate() + { + LogVersion(); + CheckInput(); + PrePareOutputDirectory(); + var items = await GetItems(); + FillItemReferences(items.Items, items.References); + ProcessNamespaces(items.Items); + + _logger.LogInformation("Generating and writing markdown..."); + + var context = new GeneratorContext() + { + Items = items.Items + .OrderBy(x => x.Name) + .ThenBy(x => x.Uid) + .ToList(), + Options = _options, + }; + + await ProcessFiles(context); + await GenerateIndex(context); + + _logger.LogInformation($"Markdown finished in ms."); + } + + private void LogVersion() + { + var versionString = Assembly.GetEntryAssembly()? + .GetCustomAttribute()? + .InformationalVersion ?? Assembly.GetExecutingAssembly().GetName().Version?.ToString(); + _logger.LogDebug($"DocFxToTemplate v{versionString} running..."); + } + + private void CheckInput() + { + ArgumentNullException.ThrowIfNull(_options.OutputPath); + ArgumentNullException.ThrowIfNull(_options.YamlPath); + if (!Directory.Exists(_options.YamlPath)) + { + throw new InvalidOperationException($"Path '{_options.YamlPath}' does not exist"); + } + } + + private void PrePareOutputDirectory() + { + if (Directory.Exists(_options.OutputPath) && Directory.EnumerateFiles(_options.OutputPath).Any()) + { + if (File.Exists(Path.Combine(_options.OutputPath, "index.md"))) + { + Directory.Delete(_options.OutputPath, true); + } + else + { + throw new InvalidOperationException("Failed to delete the output directory. " + + "The folder exists but does not contain the expected files."); + } + } + + Directory.CreateDirectory(_options.OutputPath); + } + + private class DeserializerPooledObjectPolicy : PooledObjectPolicy + { + public override IDeserializer Create() => + new DeserializerBuilder() + .WithNamingConvention(CamelCaseNamingConvention.Instance) + .IgnoreUnmatchedProperties() + .Build(); + + public override bool Return(IDeserializer obj) => true; + } + + private async Task<(List Items, List References)> GetItems() + { + List items = new(); + List references = new(); + var stopwatch = Stopwatch.StartNew(); + var provider = new DefaultObjectPoolProvider(); + var pool = provider.Create(new DeserializerPooledObjectPolicy()); + + await Parallel.ForEachAsync(Directory.GetFiles(_options.YamlPath, "*.yml"), async (file, cancellationToken) => + { + if (file.EndsWith("toc.yml")) + { + return; + } + + _logger.LogDebug(file); + var yamlDeserializer = pool.Get(); + + try + { + var content = await File.ReadAllTextAsync(file, cancellationToken); + var obj = yamlDeserializer.Deserialize(content); + + foreach (var item in obj.Items) + { + PrepareItem(item); + } + + lock (items) + { + items.AddRange(obj.Items); + references.AddRange(obj.References); + } + } + finally + { + pool.Return(yamlDeserializer); + } + }); + _logger.LogInformation($"Read all YAML in {stopwatch.ElapsedMilliseconds}ms."); + + references = references + .GroupBy(x => x.Uid) + .Select(x => x.First()) + .ToList(); + + return (items, references); + } + + private void PrepareItem(ItemViewModel itemViewModel) + { + itemViewModel.Children = itemViewModel.Children.OrderBy(); + itemViewModel.DerivedClasses = itemViewModel.DerivedClasses.OrderBy(); + itemViewModel.AssemblyNameList = itemViewModel.AssemblyNameList.OrderBy(); + itemViewModel.Examples = itemViewModel.Examples.OrderBy(); + itemViewModel.Inheritance = itemViewModel.Inheritance.OrderBy(); + itemViewModel.Implements = itemViewModel.Implements.OrderBy(); + itemViewModel.InheritedMembers = itemViewModel.InheritedMembers.OrderBy(); + itemViewModel.ExtensionMethods = itemViewModel.ExtensionMethods.OrderBy(); + itemViewModel.Platform = itemViewModel.Platform.OrderBy(); + itemViewModel.Exceptions = itemViewModel.Exceptions? + .OrderBy(x => x.CommentId) + .ToList(); + itemViewModel.SeeAlsos = itemViewModel.SeeAlsos? + .OrderBy(x => x.LinkId) + .ToList(); + itemViewModel.Attributes = itemViewModel.Attributes? + .OrderBy(x => x.Constructor) + .ThenBy(x => x.Arguments.Count) + .ToList(); + } + + private void FillItemReferences(List items, List references) + { + foreach (var reference in references) + { + reference.Item = items.GetByUid(reference.Uid); + reference.SpecCsharp.ForEach(x => x.Item = items.GetByUid(x.Uid)); + } + + foreach (var itemViewModel in items) + { + if (!string.IsNullOrWhiteSpace(itemViewModel.Uid)) + { + itemViewModel.Properties = items.GetProperties(itemViewModel.Uid).ToArray(); + itemViewModel.Fields = items.GetFields(itemViewModel.Uid).ToArray(); + itemViewModel.Methods = items.GetMethods(itemViewModel.Uid).ToArray(); + itemViewModel.Events = items.GetEvents(itemViewModel.Uid).ToArray(); + itemViewModel.Link = items.GetLink(itemViewModel.Uid); + } + + itemViewModel.InheritanceRefs = references.GetByUid(itemViewModel.Inheritance); + itemViewModel.DerivedClassesRefs = references.GetByUid(itemViewModel.DerivedClasses); + itemViewModel.ImplementsRefs = references.GetByUid(itemViewModel.Implements); + itemViewModel.InheritedMembersRefs = references.GetByUid(itemViewModel.InheritedMembers); + itemViewModel.ExtensionMethodsRefs = references.GetByUid(itemViewModel.ExtensionMethods); + + if (itemViewModel.Syntax != null) + { + itemViewModel.Syntax.Parameters?.ForEach(p => p.Reference = references.GetByUid(p.Type)); + itemViewModel.Syntax.TypeParameters?.ForEach(p => p.Reference = references.GetByUid(p.Type)); + if (itemViewModel.Syntax.Return != null) + { + itemViewModel.Syntax.Return.Reference = references.GetByUid(itemViewModel.Syntax.Return.Type); + } + } + } + } + + private void ProcessNamespaces(List items) + { + Parallel.ForEach(items, (item, _) => + { + if (item.Type == MemberType.Namespace) + { + _logger.LogDebug(item.Type + ": " + item.Name); + var dir = Path.Combine(_options.OutputPath, item.Name); + Directory.CreateDirectory(dir); + } + }); + } + + private async Task ProcessFiles(GeneratorContext context) + { + await Parallel.ForEachAsync(context.Items, async (item, cancellationToken) => + { + if (item.CommentId == null) + { + if (item.Type == MemberType.Namespace) + { + return; + } + + _logger.LogWarning($"Missing commentId for {item.Uid ?? item.Id ?? "(can't get uid or id)"}"); + return; + } + + if (item.CommentId.StartsWith("T:")) + { + var content = await Render(context, item, "Templates/class/index.tpl"); + await Save(item, context, content); + } + else if (item.Type == MemberType.Namespace) + { + var content = await Render(context, item, "Templates/namespace/index.tpl"); + await File.WriteAllTextAsync( + Path.Join(context.Options.OutputPath, (string?)item.Name, $"{item.Name}.md"), content, + cancellationToken); + } + }); + } + + private async Task Save(ItemViewModel item, GeneratorContext context, string content) + { + var path = + $"{Path.Join(context.Options.OutputPath, (string?)item.NamespaceName, (string?)item.Name.Replace('<', '`').Replace('>', '`'))}.md"; + + Directory.CreateDirectory(Path.GetDirectoryName(path)!); + await File.WriteAllTextAsync(path, content); + } + + private static async Task Render(GeneratorContext context, TModel model, string templatePath) + { + var tpl = new TemplateLoader(); + var scriptObject = new ScriptObject() + { + ["model"] = model, + ["generator_context"] = context + }; + + if (model != null) + { + scriptObject.Import(model); + } + + var templateContext = new TemplateContext() + { + TemplateLoader = tpl, + }; + templateContext.PushGlobal(scriptObject); + + var functionsScriptObject = new ScriptObject(); + var functions = new ScriptObject(); + functions.Import(typeof(Scriban.MakrdownFunctions), null, x => x.Name.ToLower()); + functionsScriptObject.Add("md", functions); + templateContext.PushGlobal(functionsScriptObject); + + var template = Template.Parse(await File.ReadAllTextAsync(templatePath)); + return await template.RenderAsync(templateContext); + } + + private async Task GenerateIndex(GeneratorContext context) + { + var content = await Render(context, new { }, "Templates/index.tpl"); + await File.WriteAllTextAsync(Path.Join(_options.OutputPath, $"index.md"), content); + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/GeneratorContext.cs b/src/DocFxToTemplate/GeneratorContext.cs new file mode 100644 index 0000000..70424e7 --- /dev/null +++ b/src/DocFxToTemplate/GeneratorContext.cs @@ -0,0 +1,9 @@ +using DocFxToTemplate.Models.DocFx; + +namespace DocFxToTemplate; + +internal record GeneratorContext +{ + public required GeneratorOptions Options { get; init; } + public required List Items { get; init; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/GeneratorOptions.cs b/src/DocFxToTemplate/GeneratorOptions.cs new file mode 100644 index 0000000..11435d2 --- /dev/null +++ b/src/DocFxToTemplate/GeneratorOptions.cs @@ -0,0 +1,9 @@ +namespace DocFxToTemplate; + +public class GeneratorOptions +{ + public required string YamlPath { get; set; } + public required string OutputPath { get; set; } + + public string IndexSlug { get; set; } = "/api"; +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/AdditionalNotes.cs b/src/DocFxToTemplate/Models/DocFx/AdditionalNotes.cs new file mode 100644 index 0000000..0a31324 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/AdditionalNotes.cs @@ -0,0 +1,26 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class AdditionalNotes +{ + [YamlMember(Alias = "caller")] + [JsonPropertyName("caller")] + [MarkdownContent] + public string Caller { get; set; } + + [YamlMember(Alias = "implementer")] + [JsonPropertyName("implementer")] + [MarkdownContent] + public string Implementer { get; set; } + + [YamlMember(Alias = "inheritor")] + [JsonPropertyName("inheritor")] + [MarkdownContent] + public string Inheritor { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/ApiParameter.cs b/src/DocFxToTemplate/Models/DocFx/ApiParameter.cs new file mode 100644 index 0000000..ce3bec2 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/ApiParameter.cs @@ -0,0 +1,37 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.Serialization; +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class ApiParameter +{ + [YamlMember(Alias = "id")] + [JsonPropertyName("id")] + [MergeOption(MergeOption.MergeKey)] + public string Name { get; set; } + + [YamlMember(Alias = "type")] + [JsonPropertyName("type")] + [UniqueIdentityReference] + public string Type { get; set; } + + [YamlMember(Alias = "description")] + [JsonPropertyName("description")] + [MarkdownContent] + public string Description { get; set; } + + [YamlMember(Alias = "attributes")] + [JsonPropertyName("attributes")] + [MergeOption(MergeOption.Ignore)] + public List Attributes { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public ReferenceViewModel? Reference { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/ArgumentInfo.cs b/src/DocFxToTemplate/Models/DocFx/ArgumentInfo.cs new file mode 100644 index 0000000..b3ef423 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/ArgumentInfo.cs @@ -0,0 +1,20 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class ArgumentInfo +{ + [YamlMember(Alias = "type")] + [JsonPropertyName("type")] + [UniqueIdentityReference] + public string Type { get; set; } + + [YamlMember(Alias = "value")] + [JsonPropertyName("value")] + public object Value { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/AttributeInfo.cs b/src/DocFxToTemplate/Models/DocFx/AttributeInfo.cs new file mode 100644 index 0000000..6dd32c5 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/AttributeInfo.cs @@ -0,0 +1,28 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class AttributeInfo +{ + [YamlMember(Alias = "type")] + [JsonPropertyName("type")] + [UniqueIdentityReference] + public string Type { get; set; } + + [YamlMember(Alias = "ctor")] + [JsonPropertyName("ctor")] + public string Constructor { get; set; } + + [YamlMember(Alias = "arguments")] + [JsonPropertyName("arguments")] + public List Arguments { get; set; } + + [YamlMember(Alias = "namedArguments")] + [JsonPropertyName("namedArguments")] + public List NamedArguments { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/Attributes/ExtensibleMemberAttribute.cs b/src/DocFxToTemplate/Models/DocFx/Attributes/ExtensibleMemberAttribute.cs new file mode 100644 index 0000000..2fbf444 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/Attributes/ExtensibleMemberAttribute.cs @@ -0,0 +1,12 @@ +namespace DocFxToTemplate.Models.DocFx.Attributes; + +public class ExtensibleMemberAttribute : Attribute +{ + public ExtensibleMemberAttribute() + { + } + + public ExtensibleMemberAttribute(string member) + { + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/Attributes/MarkdownContentAttribute.cs b/src/DocFxToTemplate/Models/DocFx/Attributes/MarkdownContentAttribute.cs new file mode 100644 index 0000000..7e6c146 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/Attributes/MarkdownContentAttribute.cs @@ -0,0 +1,5 @@ +namespace DocFxToTemplate.Models.DocFx.Attributes; + +public class MarkdownContentAttribute : Attribute +{ +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/Attributes/MergeOptionAttribute.cs b/src/DocFxToTemplate/Models/DocFx/Attributes/MergeOptionAttribute.cs new file mode 100644 index 0000000..c8b8f6e --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/Attributes/MergeOptionAttribute.cs @@ -0,0 +1,15 @@ +namespace DocFxToTemplate.Models.DocFx.Attributes; + +public class MergeOptionAttribute : Attribute +{ + public MergeOptionAttribute(MergeOption option) + { + } +} + +public enum MergeOption +{ + MergeKey, + Ignore, + Replace +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/Attributes/UniqueIdentityReferenceAttribute.cs b/src/DocFxToTemplate/Models/DocFx/Attributes/UniqueIdentityReferenceAttribute.cs new file mode 100644 index 0000000..3bbfe0c --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/Attributes/UniqueIdentityReferenceAttribute.cs @@ -0,0 +1,5 @@ +namespace DocFxToTemplate.Models.DocFx.Attributes; + +public class UniqueIdentityReferenceAttribute : Attribute +{ +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/CompositeDictionary.cs b/src/DocFxToTemplate/Models/DocFx/CompositeDictionary.cs new file mode 100644 index 0000000..d5eca2f --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/CompositeDictionary.cs @@ -0,0 +1,218 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Collections; +using System.Collections.Immutable; + +namespace DocFxToTemplate.Models.DocFx; + +public class CompositeDictionary + : IDictionary +{ + private readonly ImmutableArray _entries; + + public CompositeDictionary() + { + _entries = ImmutableArray.Empty; + } + + private CompositeDictionary(ImmutableArray entries) + { + _entries = entries; + } + + public object this[string key] + { + get + { + ArgumentNullException.ThrowIfNull(key); + + foreach (var entry in _entries) + if (key.StartsWith(entry.Prefix, StringComparison.Ordinal)) + { + var pair = entry.TryGetValue(key.Substring(entry.Prefix.Length)); + if (pair.Key) return pair.Value; + break; + } + + throw new KeyNotFoundException(); + } + set + { + ArgumentNullException.ThrowIfNull(key); + + foreach (var entry in _entries) + if (key.StartsWith(entry.Prefix, StringComparison.Ordinal)) + { + entry.SetValue(key.Substring(entry.Prefix.Length), value); + return; + } + + throw new InvalidOperationException(); + } + } + + public int Count => _entries.Sum(e => e.Count()); + + public bool IsReadOnly => false; + + public ICollection Keys => (from pair in this select pair.Key).ToList(); + + public ICollection Values => (from pair in this select pair.Value).ToList(); + + void ICollection>.Add(KeyValuePair item) + { + Add(item.Key, item.Value); + } + + public void Add(string key, object value) + { + ArgumentNullException.ThrowIfNull(key); + + foreach (var entry in _entries) + if (key.StartsWith(entry.Prefix)) + { + entry.AddValue(key.Substring(entry.Prefix.Length), value); + return; + } + + throw new InvalidOperationException(); + } + + public void Clear() + { + foreach (var entry in _entries) entry.Clear(); + } + + bool ICollection>.Contains(KeyValuePair item) + { + return TryGetValue(item.Key, out var value) && Equals(item.Value, value); + } + + public bool ContainsKey(string key) + { + ArgumentNullException.ThrowIfNull(key); + + return TryGetValue(key, out _); + } + + void ICollection>.CopyTo(KeyValuePair[] array, int arrayIndex) + { + ArgumentNullException.ThrowIfNull(array); + + var count = 0; + foreach (var item in this) + { + array[arrayIndex + count] = item; + count++; + } + } + + public IEnumerator> GetEnumerator() + { + foreach (var entry in _entries) + foreach (var item in entry.Enumerate()) + yield return new KeyValuePair(entry.Prefix + item.Key, item.Value); + } + + bool ICollection>.Remove(KeyValuePair item) + { + if (!((ICollection>)this).Contains(item)) return false; + return Remove(item.Key); + } + + public bool Remove(string key) + { + ArgumentNullException.ThrowIfNull(key); + + foreach (var entry in _entries) + if (key.StartsWith(entry.Prefix)) + return entry.Remove(key.Substring(entry.Prefix.Length)); + return false; + } + + public bool TryGetValue(string key, out object value) + { + ArgumentNullException.ThrowIfNull(key); + + foreach (var entry in _entries) + if (key.StartsWith(entry.Prefix)) + { + var pair = entry.TryGetValue(key.Substring(entry.Prefix.Length)); + value = pair.Value; + return pair.Key; + } + + value = null; + return false; + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + + public static Builder CreateBuilder() + { + return new Builder(); + } + + private sealed class Entry + { + public string Prefix { get; set; } + public Func>> Enumerate { get; set; } + public Action AddValue { get; set; } + public Action SetValue { get; set; } + public Func> TryGetValue { get; set; } + public Func Remove { get; set; } + public Action Clear { get; set; } + public Func Count { get; set; } + } + + public sealed class Builder + { + private readonly List _entries = new(); + + internal Builder() + { + } + + public Builder Add(string prefix, IDictionary dict, + Func valueConverter = null) + { + ArgumentNullException.ThrowIfNull(prefix); + ArgumentNullException.ThrowIfNull(dict); + + valueConverter ??= o => (TValue)o; + if (_entries.Exists(e => e.Prefix == prefix)) throw new InvalidOperationException(); + _entries.Add(new Entry + { + Prefix = prefix, + Enumerate = () => Enumerate(dict), + AddValue = (k, v) => dict.Add(k, valueConverter(v)), + SetValue = (k, v) => dict[k] = valueConverter(v), + TryGetValue = + key => + { + var getted = dict.TryGetValue(key, out var value); + return new KeyValuePair(getted, value); + }, + Remove = dict.Remove, + Clear = dict.Clear, + Count = () => dict.Count + }); + return this; + } + + private static IEnumerable> Enumerate( + IEnumerable> source) + { + foreach (var item in source) yield return new KeyValuePair(item.Key, item.Value); + } + + public CompositeDictionary Create() + { + return new CompositeDictionary(_entries.OrderByDescending(x => x.Prefix.Length).ToImmutableArray()); + } + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/Constants.cs b/src/DocFxToTemplate/Models/DocFx/Constants.cs new file mode 100644 index 0000000..7163a15 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/Constants.cs @@ -0,0 +1,155 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Runtime.CompilerServices; + +namespace DocFxToTemplate.Models.DocFx; + +public static class Constants +{ + public const string ConfigFileName = "docfx.json"; + public const string YamlExtension = ".yml"; + public const string ContentPlaceholder = "*content"; + public const string PrefixSeparator = "."; + public const string TocYamlFileName = "toc.yml"; + + public static class DocumentType + { + public const string Conceptual = "Conceptual"; + public const string Toc = "Toc"; + public const string ManagedReference = "ManagedReference"; + public const string Resource = "Resource"; + public const string Redirection = "Redirection"; + } + + public static class PropertyName + { + public const string Uid = "uid"; + public const string CommentId = "commentId"; + public const string Id = "id"; + public const string Href = "href"; + public const string Type = "type"; + public const string Source = "source"; + public const string Path = "path"; + public const string DocumentType = "documentType"; + public const string Title = "title"; + public const string TitleOverwriteH1 = "titleOverwriteH1"; + public const string Conceptual = "conceptual"; + public const string Documentation = "documentation"; + public const string Summary = "summary"; + public const string IsEii = "isEii"; + + public const string Name = "name"; + public const string DisplayName = "displayName"; + public const string NameWithType = "nameWithType"; + public const string FullName = "fullName"; + public const string Content = "content"; + public const string TocHref = "tocHref"; + public const string TopicHref = "topicHref"; + public const string TopicUid = "topicUid"; + public const string Platform = "platform"; + public const string Parent = "parent"; + public const string Children = "children"; + public const string Namespace = "namespace"; + public const string Assemblies = "assemblies"; + public const string Overridden = "overridden"; + public const string Exceptions = "exceptions"; + public const string Inheritance = "inheritance"; + public const string DerivedClasses = "derivedClasses"; + public const string Implements = "implements"; + public const string InheritedMembers = "inheritedMembers"; + public const string ExtensionMethods = "extensionMethods"; + public const string Overload = "overload"; + public const string Return = "return"; + public const string SeeAlsoContent = "seealsoContent"; + public const string Syntax = "syntax"; + public const string AdditionalNotes = "additionalNotes"; + public const string SystemKeys = "_systemKeys"; + + public const string OutputFileName = "outputFileName"; + + public const string RedirectUrl = "redirect_url"; + } + + public static class MetadataName + { + public const string Version = "version"; + } + + public static class ExtensionMemberPrefix + { + public const string NameWithType = PropertyName.NameWithType + PrefixSeparator; + public const string FullName = PropertyName.FullName + PrefixSeparator; + public const string Name = PropertyName.Name + PrefixSeparator; + public const string Spec = "spec" + PrefixSeparator; + public const string Content = PropertyName.Content + PrefixSeparator; + public const string Parent = PropertyName.Parent + PrefixSeparator; + public const string Children = PropertyName.Children + PrefixSeparator; + public const string Source = PropertyName.Source + PrefixSeparator; + public const string Namespace = PropertyName.Namespace + PrefixSeparator; + public const string Assemblies = PropertyName.Assemblies + PrefixSeparator; + public const string Overridden = PropertyName.Overridden + PrefixSeparator; + public const string Exceptions = PropertyName.Exceptions + PrefixSeparator; + public const string Inheritance = PropertyName.Inheritance + PrefixSeparator; + public const string DerivedClasses = PropertyName.DerivedClasses + PrefixSeparator; + public const string Implements = PropertyName.Implements + PrefixSeparator; + public const string InheritedMembers = PropertyName.InheritedMembers + PrefixSeparator; + public const string ExtensionMethods = PropertyName.ExtensionMethods + PrefixSeparator; + public const string Platform = PropertyName.Platform + PrefixSeparator; + public const string Return = PropertyName.Return + PrefixSeparator; + public const string Overload = PropertyName.Overload + PrefixSeparator; + } + + public static class DevLang + { + public const string CSharp = "csharp"; + public const string VB = "vb"; + } + + public static class TableOfContents + { + public const string MarkdownTocFileName = "toc.md"; + public const string YamlTocFileName = "toc.yml"; + } + + public static class EnvironmentVariables + { + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static string? GetValue(string name) + { + var value = Environment.GetEnvironmentVariable(name); + return string.IsNullOrEmpty(value) ? null : value; + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static bool GetBooleanValue(string name) + { + var value = Environment.GetEnvironmentVariable(name); + return bool.TryParse(value, out var result) && result; + } +#pragma warning disable format + public const string DOCFX_KEEP_DEBUG_INFO = nameof(DOCFX_KEEP_DEBUG_INFO); + + public const string DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST = + nameof(DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST); + + public const string DOCFX_SOURCE_BRANCH_NAME = nameof(DOCFX_SOURCE_BRANCH_NAME); +#pragma warning restore format + +#pragma warning disable format + public static string? KeepDebugInfo => GetValue(DOCFX_KEEP_DEBUG_INFO); + + public static bool NoCheckCertificateRevocationList => + GetBooleanValue(DOCFX_NO_CHECK_CERTIFICATE_REVOCATION_LIST); + + public static string? SourceBranchName => GetValue(DOCFX_SOURCE_BRANCH_NAME); +#pragma warning restore format + } + + public static class Switches + { + public const string DotnetToolMode = "Docfx.DotnetToolMode"; + + public static bool IsDotnetToolsMode => AppContext.TryGetSwitch(DotnetToolMode, out var isEnabled) && isEnabled; + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/ExceptionInfo.cs b/src/DocFxToTemplate/Models/DocFx/ExceptionInfo.cs new file mode 100644 index 0000000..8badc1e --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/ExceptionInfo.cs @@ -0,0 +1,31 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class ExceptionInfo +{ + [YamlMember(Alias = "type")] + [MergeOption(MergeOption.MergeKey)] + [JsonPropertyName("type")] + [UniqueIdentityReference] + public string Type { get; set; } + + [YamlMember(Alias = Constants.PropertyName.CommentId)] + [JsonPropertyName(Constants.PropertyName.CommentId)] + public string CommentId { get; set; } + + [YamlMember(Alias = "description")] + [JsonPropertyName("description")] + [MarkdownContent] + public string Description { get; set; } + + internal ExceptionInfo Clone() + { + return (ExceptionInfo)MemberwiseClone(); + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/GitDetail.cs b/src/DocFxToTemplate/Models/DocFx/GitDetail.cs new file mode 100644 index 0000000..02e16bf --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/GitDetail.cs @@ -0,0 +1,25 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public record GitDetail +{ + /// + /// Relative path of current file to the Git Root Directory + /// + [YamlMember(Alias = "path")] + [JsonPropertyName("path")] + public string Path { get; set; } + + [YamlMember(Alias = "branch")] + [JsonPropertyName("branch")] + public string Branch { get; set; } + + [YamlMember(Alias = "repo")] + [JsonPropertyName("repo")] + public string Repo { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/ItemViewModel.cs b/src/DocFxToTemplate/Models/DocFx/ItemViewModel.cs new file mode 100644 index 0000000..191ea23 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/ItemViewModel.cs @@ -0,0 +1,313 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public partial class ItemViewModel +{ + [YamlMember(Alias = Constants.PropertyName.Uid)] + [JsonPropertyName(Constants.PropertyName.Uid)] + [MergeOption(MergeOption.MergeKey)] + public string? Uid { get; set; } + + [YamlMember(Alias = Constants.PropertyName.CommentId)] + [JsonPropertyName(Constants.PropertyName.CommentId)] + public string? CommentId { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Id)] + [JsonPropertyName(Constants.PropertyName.Id)] + public string? Id { get; set; } + + [YamlMember(Alias = "isEii")] + [JsonPropertyName("isEii")] + public bool IsExplicitInterfaceImplementation { get; set; } + + [YamlMember(Alias = "isExtensionMethod")] + [JsonPropertyName("isExtensionMethod")] + public bool IsExtensionMethod { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Parent)] + [JsonPropertyName(Constants.PropertyName.Parent)] + [UniqueIdentityReference] + public string Parent { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Children)] + [MergeOption(MergeOption.Ignore)] // todo : merge more children + [JsonPropertyName(Constants.PropertyName.Children)] + [UniqueIdentityReference] + public List? Children { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Href)] + [JsonPropertyName(Constants.PropertyName.Href)] + public string Href { get; set; } + + [YamlMember(Alias = "langs")] + [JsonPropertyName("langs")] + public string[] SupportedLanguages { get; set; } = { "csharp", "vb" }; + + [YamlMember(Alias = Constants.PropertyName.Name)] + [JsonPropertyName(Constants.PropertyName.Name)] + public string Name { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.Name)] + [JsonIgnore] + public SortedList Names { get; set; } = new(); + + [YamlIgnore] + [JsonIgnore] + public string NameForCSharp + { + get + { + Names.TryGetValue("csharp", out var result); + return result; + } + set + { + if (value == null) + Names.Remove("csharp"); + else + Names["csharp"] = value; + } + } + + [YamlIgnore] + [JsonIgnore] + public string NameForVB + { + get + { + Names.TryGetValue("vb", out var result); + return result; + } + set + { + if (value == null) + Names.Remove("vb"); + else + Names["vb"] = value; + } + } + + [YamlMember(Alias = Constants.PropertyName.NameWithType)] + [JsonPropertyName(Constants.PropertyName.NameWithType)] + public string NameWithType { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.NameWithType)] + [JsonIgnore] + public SortedList NamesWithType { get; set; } = new(); + + [YamlIgnore] + [JsonIgnore] + public string NameWithTypeForCSharp + { + get + { + Names.TryGetValue("csharp", out var result); + return result; + } + set + { + if (value == null) + NamesWithType.Remove("csharp"); + else + NamesWithType["csharp"] = value; + } + } + + [YamlIgnore] + [JsonIgnore] + public string NameWithTypeForVB + { + get + { + Names.TryGetValue("vb", out var result); + return result; + } + set + { + if (value == null) + NamesWithType.Remove("vb"); + else + NamesWithType["vb"] = value; + } + } + + [YamlMember(Alias = Constants.PropertyName.FullName)] + [JsonPropertyName(Constants.PropertyName.FullName)] + public string FullName { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.FullName)] + [JsonIgnore] + public SortedList FullNames { get; set; } = new(); + + [YamlIgnore] + [JsonIgnore] + public string FullNameForCSharp + { + get + { + FullNames.TryGetValue("csharp", out var result); + return result; + } + set + { + if (value == null) + FullNames.Remove("csharp"); + else + FullNames["csharp"] = value; + } + } + + [YamlIgnore] + [JsonIgnore] + public string FullNameForVB + { + get + { + FullNames.TryGetValue("vb", out var result); + return result; + } + set + { + if (value == null) + FullNames.Remove("vb"); + else + FullNames["vb"] = value; + } + } + + [YamlMember(Alias = Constants.PropertyName.Type)] + [JsonPropertyName(Constants.PropertyName.Type)] + public MemberType? Type { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Source)] + [JsonPropertyName(Constants.PropertyName.Source)] + public SourceDetail? Source { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Documentation)] + [JsonPropertyName(Constants.PropertyName.Documentation)] + public SourceDetail Documentation { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Assemblies)] + [MergeOption(MergeOption.Ignore)] // todo : merge more children + [JsonPropertyName(Constants.PropertyName.Assemblies)] + public List? AssemblyNameList { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Namespace)] + [JsonPropertyName(Constants.PropertyName.Namespace)] + [UniqueIdentityReference] + public string NamespaceName { get; set; } + + [YamlMember(Alias = "summary")] + [JsonPropertyName("summary")] + [MarkdownContent] + public string Summary { get; set; } + + [YamlMember(Alias = Constants.PropertyName.AdditionalNotes)] + [JsonPropertyName(Constants.PropertyName.AdditionalNotes)] + public AdditionalNotes AdditionalNotes { get; set; } + + [YamlMember(Alias = "remarks")] + [JsonPropertyName("remarks")] + [MarkdownContent] + public string Remarks { get; set; } + + [YamlMember(Alias = "example")] + [JsonPropertyName("example")] + [MergeOption(MergeOption.Replace)] + [MarkdownContent] + public List? Examples { get; set; } + + [YamlMember(Alias = "syntax")] + [JsonPropertyName("syntax")] + public SyntaxDetailViewModel? Syntax { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Overridden)] + [JsonPropertyName(Constants.PropertyName.Overridden)] + [UniqueIdentityReference] + public string Overridden { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Overload)] + [JsonPropertyName(Constants.PropertyName.Overload)] + [UniqueIdentityReference] + public string Overload { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Exceptions)] + [JsonPropertyName(Constants.PropertyName.Exceptions)] + public List? Exceptions { get; set; } + + [YamlMember(Alias = "seealso")] + [JsonPropertyName("seealso")] + public List? SeeAlsos { get; set; } + + [YamlIgnore] + [JsonIgnore] + [UniqueIdentityReference] + public List SeeAlsosUidReference => + SeeAlsos?.Where(s => s.LinkType == LinkType.CRef)?.Select(s => s.LinkId).ToList(); + + [YamlMember(Alias = Constants.PropertyName.Inheritance)] + [MergeOption(MergeOption.Ignore)] + [JsonPropertyName(Constants.PropertyName.Inheritance)] + [UniqueIdentityReference] + public List? Inheritance { get; set; } + + [YamlMember(Alias = Constants.PropertyName.DerivedClasses)] + [MergeOption(MergeOption.Ignore)] + [JsonPropertyName(Constants.PropertyName.DerivedClasses)] + [UniqueIdentityReference] + public List? DerivedClasses { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Implements)] + [MergeOption(MergeOption.Ignore)] // todo : merge more children + [JsonPropertyName(Constants.PropertyName.Implements)] + [UniqueIdentityReference] + public List? Implements { get; set; } + + [YamlMember(Alias = Constants.PropertyName.InheritedMembers)] + [MergeOption(MergeOption.Ignore)] // todo : merge more children + [JsonPropertyName(Constants.PropertyName.InheritedMembers)] + [UniqueIdentityReference] + public List? InheritedMembers { get; set; } + + [YamlMember(Alias = Constants.PropertyName.ExtensionMethods)] + [MergeOption(MergeOption.Ignore)] // todo : merge more children + [JsonPropertyName(Constants.PropertyName.ExtensionMethods)] + [UniqueIdentityReference] + public List? ExtensionMethods { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Conceptual)] + [JsonPropertyName(Constants.PropertyName.Conceptual)] + [MarkdownContent] + public string Conceptual { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Platform)] + [JsonPropertyName(Constants.PropertyName.Platform)] + [MergeOption(MergeOption.Replace)] + public List? Platform { get; set; } + + [YamlMember(Alias = "attributes")] + [JsonPropertyName("attributes")] + [MergeOption(MergeOption.Ignore)] + public List? Attributes { get; set; } + + [ExtensibleMember] [JsonIgnore] public Dictionary Metadata { get; set; } = new(); + + // [EditorBrowsable(EditorBrowsableState.Never)] + // [YamlIgnore] + // + // [System.Text.Json.Serialization.JsonExtensionData] + // public IDictionary ExtensionData => + // CompositeDictionary + // .CreateBuilder() + // .Add(Constants.ExtensionMemberPrefix.Name, Names, JTokenConverter.Convert) + // .Add(Constants.ExtensionMemberPrefix.NameWithType, NamesWithType, JTokenConverter.Convert) + // .Add(Constants.ExtensionMemberPrefix.FullName, FullNames, JTokenConverter.Convert) + // .Add(string.Empty, Metadata) + // .Create(); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/LinkInfo.cs b/src/DocFxToTemplate/Models/DocFx/LinkInfo.cs new file mode 100644 index 0000000..f0b565c --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/LinkInfo.cs @@ -0,0 +1,41 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class LinkInfo +{ + [YamlMember(Alias = "linkType")] + [JsonPropertyName("linkType")] + [MergeOption(MergeOption.Ignore)] + public LinkType LinkType { get; set; } + + [YamlMember(Alias = "linkId")] + [MergeOption(MergeOption.MergeKey)] + [JsonPropertyName("linkId")] + public string LinkId { get; set; } + + [YamlMember(Alias = Constants.PropertyName.CommentId)] + [JsonPropertyName(Constants.PropertyName.CommentId)] + [MergeOption(MergeOption.Ignore)] + public string CommentId { get; set; } + + [YamlMember(Alias = "altText")] + [JsonPropertyName("altText")] + public string AltText { get; set; } + + internal LinkInfo Clone() + { + return (LinkInfo)MemberwiseClone(); + } +} + +public enum LinkType +{ + CRef, + HRef +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/MemberType.cs b/src/DocFxToTemplate/Models/DocFx/MemberType.cs new file mode 100644 index 0000000..1d745b5 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/MemberType.cs @@ -0,0 +1,26 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +namespace DocFxToTemplate.Models.DocFx; + +public enum MemberType +{ + Default, + Toc, + Assembly, + Namespace, + Class, + Interface, + Struct, + Delegate, + Enum, + Field, + Property, + Event, + Constructor, + Method, + Operator, + Container, + AttachedEvent, + AttachedProperty +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/NamedArgumentInfo.cs b/src/DocFxToTemplate/Models/DocFx/NamedArgumentInfo.cs new file mode 100644 index 0000000..4a2c470 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/NamedArgumentInfo.cs @@ -0,0 +1,24 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class NamedArgumentInfo +{ + [YamlMember(Alias = "name")] + [JsonPropertyName("name")] + public string Name { get; set; } + + [YamlMember(Alias = "type")] + [JsonPropertyName("type")] + [UniqueIdentityReference] + public string Type { get; set; } + + [YamlMember(Alias = "value")] + [JsonPropertyName("value")] + public object Value { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/PageViewModel.cs b/src/DocFxToTemplate/Models/DocFx/PageViewModel.cs new file mode 100644 index 0000000..13ae1de --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/PageViewModel.cs @@ -0,0 +1,25 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class PageViewModel +{ + [YamlMember(Alias = "items")] + [JsonPropertyName("items")] + public List Items { get; set; } = new(); + + [YamlMember(Alias = "references")] + [JsonPropertyName("references")] + public List References { get; set; } = new(); + + [YamlMember(Alias = "shouldSkipMarkup")] + [JsonPropertyName("shouldSkipMarkup")] + public bool ShouldSkipMarkup { get; set; } + + + [JsonExtensionData] public Dictionary Metadata { get; set; } = new(); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/ReferenceViewModel.cs b/src/DocFxToTemplate/Models/DocFx/ReferenceViewModel.cs new file mode 100644 index 0000000..4b9b748 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/ReferenceViewModel.cs @@ -0,0 +1,102 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class ReferenceViewModel +{ + [YamlMember(Alias = Constants.PropertyName.Uid)] + [JsonPropertyName(Constants.PropertyName.Uid)] + public string Uid { get; set; } + + [YamlMember(Alias = Constants.PropertyName.CommentId)] + [JsonPropertyName(Constants.PropertyName.CommentId)] + public string CommentId { get; set; } + + [YamlMember(Alias = "parent")] + [JsonPropertyName("parent")] + public string Parent { get; set; } + + [YamlMember(Alias = "definition")] + [JsonPropertyName("definition")] + public string Definition { get; set; } + + + [YamlMember(Alias = "isExternal")] + [JsonPropertyName("isExternal")] + public bool? IsExternal { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Href)] + [JsonPropertyName(Constants.PropertyName.Href)] + public string Href { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Name)] + [JsonPropertyName(Constants.PropertyName.Name)] + public string Name { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.Name)] + [JsonIgnore] + public SortedList NameInDevLangs { get; private set; } = new(); + + [YamlMember(Alias = Constants.PropertyName.NameWithType)] + [JsonPropertyName(Constants.PropertyName.NameWithType)] + public string NameWithType { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.NameWithType)] + [JsonIgnore] + public SortedList NameWithTypeInDevLangs { get; private set; } = new(); + + [YamlMember(Alias = Constants.PropertyName.FullName)] + [JsonPropertyName(Constants.PropertyName.FullName)] + public string FullName { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.FullName)] + [JsonIgnore] + public SortedList FullNameInDevLangs { get; private set; } = new(); + + // [ExtensibleMember(Constants.ExtensionMemberPrefix.Spec)] + // [JsonIgnore] + // public SortedList> Specs { get; private set; } = new(); + + [YamlMember(Alias = "spec.csharp")] + public List SpecCsharp { get; private set; } = new(); + + [YamlIgnore] + [JsonIgnore] + public ItemViewModel? Item { get; set; } + + [ExtensibleMember] [JsonIgnore] public Dictionary Additional { get; private set; } = new(); + + // [EditorBrowsable(EditorBrowsableState.Never)] + // [YamlIgnore] + // + // [System.Text.Json.Serialization.JsonExtensionData] + // [UniqueIdentityReferenceIgnore] + // [MarkdownContentIgnore] + // public CompositeDictionary AdditionalJson => + // CompositeDictionary + // .CreateBuilder() + // .Add(Constants.ExtensionMemberPrefix.Name, NameInDevLangs, JTokenConverter.Convert) + // .Add(Constants.ExtensionMemberPrefix.NameWithType, NameWithTypeInDevLangs, JTokenConverter.Convert) + // .Add(Constants.ExtensionMemberPrefix.FullName, FullNameInDevLangs, JTokenConverter.Convert) + // .Add(Constants.ExtensionMemberPrefix.Spec, Specs, JTokenConverter.Convert>) + // .Add(string.Empty, Additional) + // .Create(); + + // public ReferenceViewModel Clone() + // { + // var copied = (ReferenceViewModel)MemberwiseClone(); + // copied.Additional = new Dictionary(Additional); + // copied.FullNameInDevLangs = new SortedList(FullNameInDevLangs); + // copied.NameInDevLangs = new SortedList(NameInDevLangs); + // copied.NameWithTypeInDevLangs = new SortedList(NameWithTypeInDevLangs); + // copied.Specs = + // new SortedList>(Specs.ToDictionary(s => s.Key, + // s => new List(s.Value))); + // return copied; + // } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/SourceDetail.cs b/src/DocFxToTemplate/Models/DocFx/SourceDetail.cs new file mode 100644 index 0000000..44c42c3 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/SourceDetail.cs @@ -0,0 +1,40 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class SourceDetail +{ + [YamlMember(Alias = "remote")] + [JsonPropertyName("remote")] + public GitDetail Remote { get; set; } + + [YamlMember(Alias = "id")] + [JsonPropertyName("id")] + public string Name { get; set; } + + /// + /// The url path for current source, should be resolved at some late stage + /// + [YamlMember(Alias = Constants.PropertyName.Href)] + [JsonPropertyName(Constants.PropertyName.Href)] + public string Href { get; set; } + + /// + /// The local path for current source, should be resolved to be relative path at some late stage + /// + [YamlMember(Alias = "path")] + [JsonPropertyName("path")] + public string Path { get; set; } + + [YamlMember(Alias = "startLine")] + [JsonPropertyName("startLine")] + public int StartLine { get; set; } + + [YamlMember(Alias = "endLine")] + [JsonPropertyName("endLine")] + public int EndLine { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/SpecViewModel.cs b/src/DocFxToTemplate/Models/DocFx/SpecViewModel.cs new file mode 100644 index 0000000..fa73aa3 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/SpecViewModel.cs @@ -0,0 +1,30 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class SpecViewModel +{ + [YamlMember(Alias = Constants.PropertyName.Uid)] + [JsonPropertyName(Constants.PropertyName.Uid)] + public string Uid { get; set; } + + [YamlMember(Alias = "name")] + [JsonPropertyName("name")] + public string Name { get; set; } + + [YamlMember(Alias = "isExternal")] + [JsonPropertyName("isExternal")] + public bool IsExternal { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Href)] + [JsonPropertyName(Constants.PropertyName.Href)] + public string Href { get; set; } + + [JsonIgnore] + [YamlIgnore] + public ItemViewModel? Item { get; set; } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/SyntaxDetailViewModel.cs b/src/DocFxToTemplate/Models/DocFx/SyntaxDetailViewModel.cs new file mode 100644 index 0000000..9f221fa --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/SyntaxDetailViewModel.cs @@ -0,0 +1,79 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class SyntaxDetailViewModel +{ + [YamlMember(Alias = Constants.PropertyName.Content)] + [JsonPropertyName(Constants.PropertyName.Content)] + public string Content { get; set; } + + [ExtensibleMember(Constants.ExtensionMemberPrefix.Content)] + [JsonIgnore] + public SortedList Contents { get; set; } = new(); + + [YamlIgnore] + [JsonIgnore] + public string ContentForCSharp + { + get + { + Contents.TryGetValue("csharp", out var result); + return result; + } + set + { + if (value == null) + Contents.Remove("csharp"); + else + Contents["csharp"] = value; + } + } + + [YamlIgnore] + [JsonIgnore] + public string ContentForVB + { + get + { + Contents.TryGetValue("vb", out var result); + return result; + } + set + { + if (value == null) + Contents.Remove("vb"); + else + Contents["vb"] = value; + } + } + + [YamlMember(Alias = "parameters")] + [JsonPropertyName("parameters")] + public List? Parameters { get; set; } + + [YamlMember(Alias = "typeParameters")] + [JsonPropertyName("typeParameters")] + public List? TypeParameters { get; set; } + + [YamlMember(Alias = "return")] + [JsonPropertyName("return")] + public ApiParameter? Return { get; set; } + + // [EditorBrowsable(EditorBrowsableState.Never)] + // [YamlIgnore] + // + // [System.Text.Json.Serialization.JsonExtensionData] + // [UniqueIdentityReferenceIgnore] + // [MarkdownContentIgnore] + // public IDictionary ExtensionData => + // CompositeDictionary + // .CreateBuilder() + // .Add(Constants.ExtensionMemberPrefix.Content, Contents, JTokenConverter.Convert) + // .Create(); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/SyntaxLanguage.cs b/src/DocFxToTemplate/Models/DocFx/SyntaxLanguage.cs new file mode 100644 index 0000000..85d2804 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/SyntaxLanguage.cs @@ -0,0 +1,11 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +namespace DocFxToTemplate.Models.DocFx; + +public enum SyntaxLanguage +{ + Default, + CSharp, + VB +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/DocFx/TocItemViewModel.cs b/src/DocFxToTemplate/Models/DocFx/TocItemViewModel.cs new file mode 100644 index 0000000..1bce986 --- /dev/null +++ b/src/DocFxToTemplate/Models/DocFx/TocItemViewModel.cs @@ -0,0 +1,114 @@ +// 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 System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx.Attributes; +using YamlDotNet.Serialization; + +namespace DocFxToTemplate.Models.DocFx; + +public class TocItemViewModel +{ + [YamlMember(Alias = Constants.PropertyName.Uid)] + [JsonPropertyName(Constants.PropertyName.Uid)] + public string Uid { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Name)] + [JsonPropertyName(Constants.PropertyName.Name)] + public string Name { get; set; } + + [YamlMember(Alias = Constants.PropertyName.DisplayName)] + [JsonPropertyName(Constants.PropertyName.DisplayName)] + public string DisplayName { get; set; } + + [YamlMember(Alias = Constants.PropertyName.Href)] + [JsonPropertyName(Constants.PropertyName.Href)] + public string Href { get; set; } + + [YamlMember(Alias = "originalHref")] + [JsonPropertyName("originalHref")] + public string OriginalHref { get; set; } + + [YamlMember(Alias = Constants.PropertyName.TocHref)] + [JsonPropertyName(Constants.PropertyName.TocHref)] + public string TocHref { get; set; } + + [YamlMember(Alias = "originalTocHref")] + [JsonPropertyName("originalTocHref")] + public string OriginalTocHref { get; set; } + + [YamlMember(Alias = Constants.PropertyName.TopicHref)] + [JsonPropertyName(Constants.PropertyName.TopicHref)] + public string TopicHref { get; set; } + + [YamlMember(Alias = "originalTopicHref")] + [JsonPropertyName("originalTopicHref")] + public string OriginalTopicHref { get; set; } + + [YamlIgnore] [JsonIgnore] public string AggregatedHref { get; set; } + + [YamlMember(Alias = "includedFrom")] + [JsonPropertyName("includedFrom")] + public string IncludedFrom { get; set; } + + [YamlMember(Alias = "homepage")] + [JsonPropertyName("homepage")] + public string Homepage { get; set; } + + [YamlMember(Alias = "originalHomepage")] + [JsonPropertyName("originalHomepage")] + public string OriginalHomepage { get; set; } + + [YamlMember(Alias = "homepageUid")] + [JsonPropertyName("homepageUid")] + public string HomepageUid { get; set; } + + [YamlMember(Alias = Constants.PropertyName.TopicUid)] + [JsonPropertyName(Constants.PropertyName.TopicUid)] + public string TopicUid { get; set; } + + [YamlMember(Alias = "order")] + [JsonPropertyName("order")] + public int? Order { get; set; } + + [YamlIgnore] [JsonIgnore] public string AggregatedUid { get; set; } + + [YamlMember(Alias = "items")] + [JsonPropertyName("items")] + public List Items { get; set; } + + [YamlIgnore] [JsonIgnore] public bool IsHrefUpdated { get; set; } + + [ExtensibleMember] [JsonIgnore] public Dictionary Metadata { get; set; } = new(); + + [EditorBrowsable(EditorBrowsableState.Never)] + [YamlIgnore] + [JsonExtensionData] + public CompositeDictionary MetadataJson => CompositeDictionary.CreateBuilder().Add(string.Empty, Metadata).Create(); + + public TocItemViewModel Clone() + { + var cloned = (TocItemViewModel)MemberwiseClone(); + cloned.Items = Items?.ConvertAll(s => s.Clone()); + return cloned; + } + + public override string ToString() + { + var result = string.Empty; + result += PropertyInfo(nameof(Name), Name); + result += PropertyInfo(nameof(Href), Href); + result += PropertyInfo(nameof(TopicHref), TopicHref); + result += PropertyInfo(nameof(TocHref), TocHref); + result += PropertyInfo(nameof(Uid), Uid); + result += PropertyInfo(nameof(TopicUid), TopicUid); + return result; + + static string PropertyInfo(string name, string value) + { + if (string.IsNullOrEmpty(value)) return string.Empty; + return $"{name}:{value} "; + } + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Models/ItemViewModel.cs b/src/DocFxToTemplate/Models/ItemViewModel.cs new file mode 100644 index 0000000..92ca54f --- /dev/null +++ b/src/DocFxToTemplate/Models/ItemViewModel.cs @@ -0,0 +1,64 @@ +using System.Runtime.Serialization; +using System.Text.Json.Serialization; +using DocFxToTemplate.Models.DocFx; +using YamlDotNet.Serialization; + +// ReSharper disable once CheckNamespace +namespace DocFxToTemplate.Models.DocFx; + +public partial class ItemViewModel +{ + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public ItemViewModel[] Properties { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public ItemViewModel[] Fields { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public ItemViewModel[] Methods { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public ItemViewModel[] Events { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public List InheritanceRefs { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public List DerivedClassesRefs { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public List ImplementsRefs { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public List InheritedMembersRefs { get; set; } + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public List ExtensionMethodsRefs { get; set; } + + + [JsonIgnore] + [YamlIgnore] + [IgnoreDataMember] + public MarkdownLink? Link { get; set; } +} + +public record MarkdownLink(string Name, string? AbsoluteAddress); \ No newline at end of file diff --git a/src/DocFxToTemplate/Scriban/MakrdownFunctions.cs b/src/DocFxToTemplate/Scriban/MakrdownFunctions.cs new file mode 100644 index 0000000..b2d39fe --- /dev/null +++ b/src/DocFxToTemplate/Scriban/MakrdownFunctions.cs @@ -0,0 +1,58 @@ +using DocFxToTemplate.Blocks; +using DocFxToTemplate.Extensions; +using DocFxToTemplate.Models.DocFx; +using Scriban; + +namespace DocFxToTemplate.Scriban; + +internal static class MakrdownFunctions +{ + public static string? Escape(string? input) => input.HtmlEscape(); + + public static string? Abs_Link(MarkdownLink? input) => + input != null + ? $"[{input.Name.HtmlEscape()}]({input.AbsoluteAddress})" + : string.Empty; + + public static string? Ref_Link(TemplateContext context, ReferenceViewModel? input) + { + if (input == null) + { + return string.Empty; + } + + if (input.Item != null) + { + var generatorContext = context.GetGeneratorContext(); + var link = input.Item.GetLink(generatorContext.Items); + return $"[{input.NameWithType.HtmlEscape()}]({link?.AbsoluteAddress})"; + } + + if (input.IsExternal == true && !string.IsNullOrWhiteSpace(input.Href)) + { + return $"[{input.NameWithType.HtmlEscape()}]({input.Href})"; + } + + return input.NameWithType.HtmlEscape(); + } + + public static string? Item_Link(TemplateContext context, ItemViewModel? input) + { + if (input == null) + { + return string.Empty; + } + + var generatorContext = context.GetGeneratorContext(); + var link = input.GetLink(generatorContext.Items); + return $"[{StringExtensions.HtmlEscape(input.NameWithType)}]({link?.AbsoluteAddress})"; + } + + public static string? Item_Source_Link(this ItemViewModel item) + => item.Source?.Remote != null + ? $"[{item.Source.Path}]({item.Source.Remote.Repo}/blob/{item.Source.Remote.Branch}/{item.Source.Remote.Path}#L{item.Source.StartLine + 1})" + : null; + + public static string? Summary(TemplateContext context, string? summary) => + SummaryFunction.Summary(context, summary); +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Scriban/SummaryFunction.cs b/src/DocFxToTemplate/Scriban/SummaryFunction.cs new file mode 100644 index 0000000..f52c50a --- /dev/null +++ b/src/DocFxToTemplate/Scriban/SummaryFunction.cs @@ -0,0 +1,52 @@ +using System.Text.RegularExpressions; +using DocFxToTemplate.Blocks; +using DocFxToTemplate.Extensions; +using Scriban; + +namespace DocFxToTemplate.Scriban; + +internal static class SummaryFunction +{ + private static readonly Regex XrefRegex = + new("", RegexOptions.Compiled); + + private static readonly Regex LangwordXrefRegex = + new("", RegexOptions.Compiled); + + private static readonly Regex CodeBlockRegex = + new("
((.|\n)+?)
", RegexOptions.Compiled); + + private static readonly Regex CodeRegex = new("(.+?)", RegexOptions.Compiled); + + private static readonly Regex LinkRegex = new("(.+?)", RegexOptions.Compiled); + + private static readonly Regex BrRegex = new("
", RegexOptions.Compiled); + + public static string Summary(TemplateContext context, string? summary) + { + if (summary == null) + { + return string.Empty; + } + + summary = XrefRegex.Replace(summary, match => + { + var generatorContext = context.GetGeneratorContext(); + var uid = match.Groups[1].Value; + var link = generatorContext.Items.GetLink(uid); + if (link == null) + { + return uid; + } + + return $"[{link.Name}]({link.AbsoluteAddress})"; + }); + summary = LangwordXrefRegex.Replace(summary, match => $"`{match.Groups[1].Value}`"); + summary = CodeBlockRegex.Replace(summary, match => $"```csharp\n{match.Groups[1].Value.Trim()}\n```"); + summary = CodeRegex.Replace(summary, match => $"`{match.Groups[1].Value}`"); + summary = LinkRegex.Replace(summary, match => $"[{match.Groups[2].Value}]({match.Groups[1].Value})"); + summary = BrRegex.Replace(summary, _ => "\r\n"); + + return summary.HtmlEscape(); + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Scriban/TemplateContextExtensions.cs b/src/DocFxToTemplate/Scriban/TemplateContextExtensions.cs new file mode 100644 index 0000000..76925af --- /dev/null +++ b/src/DocFxToTemplate/Scriban/TemplateContextExtensions.cs @@ -0,0 +1,12 @@ +using Scriban; +using Scriban.Syntax; + +namespace DocFxToTemplate.Scriban; + +internal static class TemplateContextExtensions +{ + public static GeneratorContext GetGeneratorContext(this TemplateContext context) + { + return (GeneratorContext)context.GetValue(new ScriptVariableGlobal("generator_context")); + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Templates/TemplateLoader.cs b/src/DocFxToTemplate/Templates/TemplateLoader.cs new file mode 100644 index 0000000..d5b26c6 --- /dev/null +++ b/src/DocFxToTemplate/Templates/TemplateLoader.cs @@ -0,0 +1,25 @@ +using Scriban; +using Scriban.Parsing; +using Scriban.Runtime; + +namespace DocFxToTemplate.Templates; + +public class TemplateLoader : ITemplateLoader +{ + private string TemplatePath = "Templates"; + + public string GetPath(TemplateContext context, SourceSpan callerSpan, string templateName) + { + return Path.Combine(Environment.CurrentDirectory, TemplatePath, templateName); + } + + public string Load(TemplateContext context, SourceSpan callerSpan, string templatePath) + { + return File.ReadAllText(templatePath); + } + + public async ValueTask LoadAsync(TemplateContext context, SourceSpan callerSpan, string templatePath) + { + return await File.ReadAllTextAsync(templatePath); + } +} \ No newline at end of file diff --git a/src/DocFxToTemplate/Templates/class/index.tpl b/src/DocFxToTemplate/Templates/class/index.tpl new file mode 100644 index 0000000..9c7d91b --- /dev/null +++ b/src/DocFxToTemplate/Templates/class/index.tpl @@ -0,0 +1,142 @@ +--- +title: {{ model.type }} {{ model.name }} +sidebar_label: {{ model.name }} +description: TODO +--- + +# {{ model.type }} {{ model.name | md.escape }} +Namespace: {{ model.namespace_name }} +Assembly: {{ model.assembly_name_list[0] }}.dll + +{{~ model.summary | md.summary }} + +{{~ if model.syntax?.content -}} + ```csharp title="{{ model.source?.path }}#{{ model.source?.start_line }}" + {{~ model.syntax?.content }} + {{~ }}``` +{{~ end ~}} + +{{~ if model.inheritance_refs?.size > 0 -}} +**Inheritance:** + {{~ for item in model.inheritance_refs -}} + {{~ item | md.ref_link }} <- + {{~ end -}} +{{- model | md.item_link -}} +{{- end }} + +{{~ if model.inherited_members?.size > 0 -}} +**Inherited Members:** + {{~ for item in model.inherited_members_refs -}} + {{- item | md.ref_link -}} + {{- if for.index != (model.inherited_members.size - 1) }}, {{ end -}} + {{- end -}} +{{- end }} + +{{~ if model.derived_classes?.size > 0 -}} +**Derived:** + {{~ if model.derived_classes?.size > 8 -}} +
+ Expand + {{- end -}} + + {{- for item in model.derived_classes -}} + {{- item | md.escape -}} + {{- if for.index != (model.derived_classes.size - 1) }}, {{ end -}} + {{- end -}} + + {{- if model.derived_classes?.size > 8 -}} +
+ {{- end -}} +{{- end }} + +{{- if model.implements?.size > 0 -}} +**Implements:** + {{~ if model.implements?.size > 8 -}} +
+ Expand + {{- end -}} + {{- for item in model.implements -}} + {{- item | md.escape -}} + {{- if for.index != (model.implements.size - 1) }}, {{ end -}} + {{- end -}} + {{- if model.implements?.size > 8 -}} +
+ {{- end -}} +{{- end }} + +{{~ if model.properties?.size > 0 -}} + ## Properties + {{~ for item in model.properties -}} + ### {{ item.name | md.escape }} + {{~ item.summary | md.summary }} + + {{~ if item.syntax?.content -}} + ```csharp title="{{ item.source?.path }}#{{ item.source?.start_line }}" + {{~ item.syntax?.content }} + {{~ }}``` + {{- end }} + + {{~ if item.syntax?.return -}} + #### Property Value + {{~ include 'spec.tpl' item.syntax.return.reference }} + {{~ item.syntax?.return.description }} + {{~ end ~}} + {{~ end ~}} +{{~ end }} + +{{~ if model.fields?.size > 0 -}} + ## Fields + {{~ for item in model.fields -}} + ### {{ item.name }} + {{~ item.summary | md.summary }} + {{~ if item.syntax?.content -}} + ```csharp title="{{ item.source?.path }}#{{ item.source?.start_line }}" + {{~ item.syntax?.content }} + {{~ }}``` + {{~ end ~}} + {{~ end ~}} +{{~ end }} + +{{~ if model.methods?.size > 0 -}} + ## Methods + {{~ for item in model.methods -}} + ### {{ item.name | md.escape }} + {{~ item.summary | md.summary }} + + {{~ if item.syntax.parameters?.size > 0 ~}} + {{~ }}#### Parameters + {{~ for parameter in item.syntax.parameters -}} + `{{ parameter.name }}` {{ parameter.reference | md.ref_link }} + {{~ parameter.description }} + {{~ end -}} + {{~ end -}} + + {{~ if item.syntax?.return != null ~}} + {{~ }}#### Returns + {{~ item.syntax.return.name | md.escape }} {{ item.syntax.return.reference | md.ref_link }} + {{~ item.syntax.return.description }} + {{~ end ~}} + + {{~ end ~}} +{{~ end }} + +{{~ if model.events?.size > 0 -}} + ## Events + {{~ for item in model.events -}} + ### {{ item.name | md.escape }} + {{~ end ~}} +{{~ end }} + +{{~ if model.implements?.size > 0 -}} + ## Implements + {{~ for item in model.implements -}} + * {{ item | md.escape }} + {{~ end ~}} +{{~ end }} + +{{~ if model.extension_methods?.size > 0 -}} + ## Extension Methods + {{~ for item in model.extension_methods -}} + * {{ item | md.escape }} + {{~ end ~}} +{{~ end }} \ No newline at end of file diff --git a/src/DocFxToTemplate/Templates/index.tpl b/src/DocFxToTemplate/Templates/index.tpl new file mode 100644 index 0000000..cda2fee --- /dev/null +++ b/src/DocFxToTemplate/Templates/index.tpl @@ -0,0 +1,20 @@ +--- +title: Index +sidebar_label: Index +sidebar_position: 0 +slug: /api +--- + +# API Index +## Namespaces + +{{~ for c in generator_context.items + if c.type != 'Namespace' + continue + end +-}} + * {{ c | md.item_link }} +{{~ end }} + +--- +Generated using [DocFxToTemplate](https://github.com/k-wojcik/DocFxToTemplate). \ No newline at end of file diff --git a/src/DocFxToTemplate/Templates/namespace/index.tpl b/src/DocFxToTemplate/Templates/namespace/index.tpl new file mode 100644 index 0000000..e7300af --- /dev/null +++ b/src/DocFxToTemplate/Templates/namespace/index.tpl @@ -0,0 +1,12 @@ +--- +title: {{ model.type }} {{ model.name }} +sidebar_label: {{ model.name }} +--- + +# Namespace {{ model.name | md.escape }} + +{{~ include 'namespace\\item.tpl' 'Classes' 'Class' ~}} +{{~ include 'namespace\\item.tpl' 'Structs' 'Struct' ~}} +{{~ include 'namespace\\item.tpl' 'Interfaces' 'Interface' ~}} +{{~ include 'namespace\\item.tpl' 'Enums' 'Enum' ~}} +{{~ include 'namespace\\item.tpl' 'Delegates' 'Delegate' ~}} \ No newline at end of file diff --git a/src/DocFxToTemplate/Templates/namespace/item.tpl b/src/DocFxToTemplate/Templates/namespace/item.tpl new file mode 100644 index 0000000..6498df8 --- /dev/null +++ b/src/DocFxToTemplate/Templates/namespace/item.tpl @@ -0,0 +1,14 @@ +{{~ first_value = true -}} +{{~ for c in generator_context.items + if model.name != c.namespace_name || c.type != $2 + continue + end +-}} + {{~ if first_value -}} + ## {{ $1 }} + {{~ first_value = false ~}} + {{~ end -}} + + ### {{ c | md.item_link }} + {{~ c.summary | md.summary }} +{{~ end }} \ No newline at end of file diff --git a/src/DocFxToTemplate/Templates/source_link.tpl b/src/DocFxToTemplate/Templates/source_link.tpl new file mode 100644 index 0000000..e69de29 diff --git a/src/DocFxToTemplate/Templates/spec.tpl b/src/DocFxToTemplate/Templates/spec.tpl new file mode 100644 index 0000000..0a6ea58 --- /dev/null +++ b/src/DocFxToTemplate/Templates/spec.tpl @@ -0,0 +1,13 @@ +{{- if $1.spec_csharp?.size > 0 -}} + {{- for ref in $1.spec_csharp -}} + {{- if ref.item -}} + [{{ ref.name | md.escape }}]({{ ref.item.link.absolute_address }}) + {{- else if ref.href && ref.is_external -}} + [{{ ref.name | md.escape }}]({{ ref.href }}) + {{- else -}} + {{ ref.name | md.escape }} + {{- end -}} + {{- end -}} +{{- else -}} + {{- $1 | md.ref_link -}} +{{- end -}} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example1/Class1.cs b/src/example/DocFxToTemplate.Example1/Class1.cs new file mode 100644 index 0000000..31ef977 --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/Class1.cs @@ -0,0 +1,5 @@ +namespace DocFxToTemplate.Example1; + +public class Class1 +{ +} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example1/DocFxToTemplate.Example1.csproj b/src/example/DocFxToTemplate.Example1/DocFxToTemplate.Example1.csproj new file mode 100644 index 0000000..39f11fe --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/DocFxToTemplate.Example1.csproj @@ -0,0 +1,16 @@ + + + + net8.0 + enable + enable + DocFxToTemplate.Example1 + + + + + + + + + diff --git a/src/example/DocFxToTemplate.Example1/Enum1.cs b/src/example/DocFxToTemplate.Example1/Enum1.cs new file mode 100644 index 0000000..7689e50 --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/Enum1.cs @@ -0,0 +1,6 @@ +namespace DocFxToTemplate.Example1; + +public enum Enum1 +{ + +} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example1/Flags1.cs b/src/example/DocFxToTemplate.Example1/Flags1.cs new file mode 100644 index 0000000..f8d276d --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/Flags1.cs @@ -0,0 +1,8 @@ +namespace DocFxToTemplate.Example1; + +[Flags] +public enum Flags1 +{ + Flag1, + Flag2, +} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example1/Interface1.cs b/src/example/DocFxToTemplate.Example1/Interface1.cs new file mode 100644 index 0000000..8cb096e --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/Interface1.cs @@ -0,0 +1,6 @@ +namespace DocFxToTemplate.Example1; + +public interface Interface1 +{ + +} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example1/Record1.cs b/src/example/DocFxToTemplate.Example1/Record1.cs new file mode 100644 index 0000000..823cdc2 --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/Record1.cs @@ -0,0 +1,6 @@ +namespace DocFxToTemplate.Example1; + +public record Record1 +{ + +} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example1/Struct1.cs b/src/example/DocFxToTemplate.Example1/Struct1.cs new file mode 100644 index 0000000..74b59f9 --- /dev/null +++ b/src/example/DocFxToTemplate.Example1/Struct1.cs @@ -0,0 +1,6 @@ +namespace DocFxToTemplate.Example1; + +public struct Struct1 +{ + +} \ No newline at end of file diff --git a/src/example/DocFxToTemplate.Example2/DocFxToTemplate.Example2.csproj b/src/example/DocFxToTemplate.Example2/DocFxToTemplate.Example2.csproj new file mode 100644 index 0000000..c7cec03 --- /dev/null +++ b/src/example/DocFxToTemplate.Example2/DocFxToTemplate.Example2.csproj @@ -0,0 +1,10 @@ + + + + net8.0 + enable + enable + DocFxToTemplate.Example2 + + +